summaryrefslogtreecommitdiff
path: root/core/launcher/shutdownimpl.h
Unidiff
Diffstat (limited to 'core/launcher/shutdownimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/shutdownimpl.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/core/launcher/shutdownimpl.h b/core/launcher/shutdownimpl.h
index 462f347..c2ebcc7 100644
--- a/core/launcher/shutdownimpl.h
+++ b/core/launcher/shutdownimpl.h
@@ -25,31 +25,31 @@
25class QTimer; 25class QTimer;
26class QLabel; 26class QLabel;
27class QProgressBar; 27class QProgressBar;
28 28
29class ShutdownImpl : public QWidget 29class ShutdownImpl : public QWidget
30{ 30{
31 Q_OBJECT 31 Q_OBJECT
32public: 32public:
33 ShutdownImpl( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 33 ShutdownImpl( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
34 34
35 enum Type { ShutdownSystem, RebootSystem, RestartDesktop, TerminateDesktop }; 35 enum Type { ShutdownSystem, RebootSystem, RestartDesktop, TerminateDesktop };
36 36
37signals: 37signals:
38 void shutdown( ShutdownImpl::Type ); 38 void shutdown( ShutdownImpl::Type );
39 39
40private slots: 40private slots:
41 void buttonClicked( int ); 41 void buttonClicked( int );
42 void cancelClicked(); 42 void cancelClicked();
43 void timeout(); 43 void timeout();
44 44
45private: 45private:
46 QTimer *m_timer; 46 QTimer *m_timer;
47 int m_counter; 47 int m_counter;
48 Type m_operation; 48 Type m_operation;
49 49
50 QLabel * m_info; 50 QLabel * m_info;
51 QProgressBar *m_progress; 51 QProgressBar *m_progress;
52}; 52};
53 53
54#endif 54#endif
55 55