summaryrefslogtreecommitdiff
path: root/core/launcher/shutdownimpl.h
authorsandman <sandman>2002-06-27 01:48:58 (UTC)
committer sandman <sandman>2002-06-27 01:48:58 (UTC)
commitddb50e049fad86aa83e196117a062fc67ff2fe7d (patch) (unidiff)
tree1bfb1181c41f5704a5dfefe31150ccbcb38e123b /core/launcher/shutdownimpl.h
parent6d0df38a805c5560b0815df62b212d4be0913154 (diff)
downloadopie-ddb50e049fad86aa83e196117a062fc67ff2fe7d.zip
opie-ddb50e049fad86aa83e196117a062fc67ff2fe7d.tar.gz
opie-ddb50e049fad86aa83e196117a062fc67ff2fe7d.tar.bz2
Forgot to run astyle to get a sane formating
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
@@ -28,27 +28,27 @@ class 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