summaryrefslogtreecommitdiff
path: root/libopie/owait.h
Unidiff
Diffstat (limited to 'libopie/owait.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/owait.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libopie/owait.h b/libopie/owait.h
index 98409cf..d22e141 100644
--- a/libopie/owait.h
+++ b/libopie/owait.h
@@ -42,27 +42,28 @@ public:
42 * reimplemented for control reasons 42 * reimplemented for control reasons
43 */ 43 */
44 void show(); 44 void show();
45 45
46 /** 46 /**
47 * Set the time before the icon will be automaticly hidden 47 * Set the time before the icon will be automaticly hidden
48 * @param length - time in seconds 48 * @param length - time in seconds
49 */ 49 */
50 void setTimerLength( int length ); 50 void setTimerLength( int length );
51 51
52 public slots: 52 public slots:
53 /** 53 /**
54 * reimplemented for control reasons 54 * reimplemented for control reasons
55 */ 55 */
56 void hide(); 56 void hide();
57 57
58 private: 58 private:
59 void timerEvent( QTimerEvent * ) ; 59 void timerEvent( QTimerEvent * ) ;
60 void paintEvent( QPaintEvent * ); 60 void paintEvent( QPaintEvent * );
61 61
62 QPixmap m_pix; 62 QPixmap m_pix;
63 QLabel *m_lb; 63 QLabel *m_lb;
64 QTimer *m_waitTimer; 64 QTimer *m_waitTimer;
65 int m_timerLength; 65 int m_timerLength;
66 int m_aniSize;
66}; 67};
67 68
68#endif 69#endif