summaryrefslogtreecommitdiff
path: root/core/launcher/shutdownimpl.h
Unidiff
Diffstat (limited to 'core/launcher/shutdownimpl.h') (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/shutdownimpl.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/core/launcher/shutdownimpl.h b/core/launcher/shutdownimpl.h
index 54668f3..462f347 100644
--- a/core/launcher/shutdownimpl.h
+++ b/core/launcher/shutdownimpl.h
@@ -22,7 +22,9 @@
22 22
23#include "shutdown.h" 23#include <qwidget.h>
24 24
25class QTimer; 25class QTimer;
26class QLabel;
27class QProgressBar;
26 28
27class ShutdownImpl : public Shutdown 29class ShutdownImpl : public QWidget
28{ 30{
@@ -43,5 +45,8 @@ private slots:
43private: 45private:
44 QTimer *timer; 46 QTimer *m_timer;
45 int progress; 47 int m_counter;
46 Type operation; 48 Type m_operation;
49
50 QLabel * m_info;
51 QProgressBar *m_progress;
47}; 52};