diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-20 18:22:04 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-20 18:22:04 -0500 |
commit | 193d9afcdb186902317c5bef5d6c769fc8933f1a (patch) | |
tree | 7634b1ddfbef08527a9fc55841ccbbdac2de7cae /ksmserver/shutdowndlg.h | |
parent | 2f2f32d31cb1548defcd7aa84187ac7df6479cce (diff) | |
download | tdebase-193d9afcdb186902317c5bef5d6c769fc8933f1a.tar.gz tdebase-193d9afcdb186902317c5bef5d6c769fc8933f1a.zip |
Fix desktop lock not engaging on suspend
This closes Bug 1003
Diffstat (limited to 'ksmserver/shutdowndlg.h')
-rw-r--r-- | ksmserver/shutdowndlg.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ksmserver/shutdowndlg.h b/ksmserver/shutdowndlg.h index 05ca99126..eab4570e1 100644 --- a/ksmserver/shutdowndlg.h +++ b/ksmserver/shutdowndlg.h @@ -129,7 +129,7 @@ class KSMShutdownDlg : public TQDialog Q_OBJECT public: - static bool confirmShutdown( bool maysd, KApplication::ShutdownType& sdtype, TQString& bopt ); + static bool confirmShutdown( bool maysd, KApplication::ShutdownType& sdtype, TQString& bopt, int* selection=0 ); public slots: void slotLogout(); @@ -143,7 +143,7 @@ protected: ~KSMShutdownDlg(); private: - KSMShutdownDlg( TQWidget* parent, bool maysd, KApplication::ShutdownType sdtype ); + KSMShutdownDlg( TQWidget* parent, bool maysd, KApplication::ShutdownType sdtype, int* selection=0 ); KApplication::ShutdownType m_shutdownType; TQString m_bootOption; TQPopupMenu *targets; @@ -157,6 +157,7 @@ private: #endif #endif // WITH_UPOWER bool m_lockOnResume; + int* m_selection; }; // The shutdown-in-progress dialog |