author | harlekin <harlekin> | 2002-05-31 09:20:44 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-05-31 09:20:44 (UTC) |
commit | f10d96a0cda80b0586f6134e25a6159ff250e558 (patch) (unidiff) | |
tree | 6e4c4c02cd0796cbc1063c94e36f2557c8acd0f2 | |
parent | ba2fed3f085f2b1878565d16b4c20d2b14b9fbfb (diff) | |
download | opie-f10d96a0cda80b0586f6134e25a6159ff250e558.zip opie-f10d96a0cda80b0586f6134e25a6159ff250e558.tar.gz opie-f10d96a0cda80b0586f6134e25a6159ff250e558.tar.bz2 |
compiles again .-)
-rw-r--r-- | noncore/tools/clock/clock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/tools/clock/clock.h b/noncore/tools/clock/clock.h index 024dd28..e5ed13c 100644 --- a/noncore/tools/clock/clock.h +++ b/noncore/tools/clock/clock.h | |||
@@ -55,45 +55,45 @@ private: | |||
55 | 55 | ||
56 | class Clock : public QVBox | 56 | class Clock : public QVBox |
57 | { | 57 | { |
58 | Q_OBJECT | 58 | Q_OBJECT |
59 | 59 | ||
60 | public: | 60 | public: |
61 | Clock( QWidget * parent = 0, const char * name = 0, WFlags f=0 ); | 61 | Clock( QWidget * parent = 0, const char * name = 0, WFlags f=0 ); |
62 | ~Clock(); | 62 | ~Clock(); |
63 | QDateTime when; | 63 | QDateTime when; |
64 | bool bSound; | 64 | bool bSound; |
65 | int hour, minute, snoozeTime; | 65 | int hour, minute, snoozeTime; |
66 | private slots: | 66 | private slots: |
67 | void slotSet(); | 67 | void slotSet(); |
68 | void slotReset(); | 68 | void slotReset(); |
69 | void modeSelect(int); | 69 | void modeSelect(int); |
70 | void updateClock(); | 70 | void updateClock(); |
71 | void changeClock( bool ); | 71 | void changeClock( bool ); |
72 | void slotSetAlarm(); | 72 | void slotSetAlarm(); |
73 | void slotSnooze(); | 73 | void slotSnooze(); |
74 | void slotToggleAlarm(); | 74 | void slotToggleAlarm(); |
75 | void alarmOn(); | 75 | void alarmOn(); |
76 | void alarmOff(); | 76 | void alarmOff(); |
77 | void appMessage(const QCString& msg, const QByteArray& data); | 77 | void appMessage(const QCString& msg, const QByteArray& data); |
78 | void timerEvent( QTimerEvent *e ); | 78 | void timerEvent( QTimerEvent *e ); |
79 | void slotAdjustTime(); | 79 | // void slotAdjustTime(); |
80 | 80 | ||
81 | private: | 81 | private: |
82 | void clearClock(); | 82 | void clearClock(); |
83 | 83 | ||
84 | bool alarmBool; | 84 | bool alarmBool; |
85 | QTimer *t; | 85 | QTimer *t; |
86 | QLCDNumber *lcd; | 86 | QLCDNumber *lcd; |
87 | QLabel *date; | 87 | QLabel *date; |
88 | QLabel *ampmLabel; | 88 | QLabel *ampmLabel; |
89 | QPushButton *set, *reset, *alarmBtn, *snoozeBtn, *alarmOffBtn; | 89 | QPushButton *set, *reset, *alarmBtn, *snoozeBtn, *alarmOffBtn; |
90 | QRadioButton *clockRB, *swatchRB; | 90 | QRadioButton *clockRB, *swatchRB; |
91 | AnalogClock *aclock; | 91 | AnalogClock *aclock; |
92 | QTime swatch_start; | 92 | QTime swatch_start; |
93 | int swatch_totalms; | 93 | int swatch_totalms; |
94 | bool swatch_running; | 94 | bool swatch_running; |
95 | bool ampm; | 95 | bool ampm; |
96 | }; | 96 | }; |
97 | 97 | ||
98 | #endif | 98 | #endif |
99 | 99 | ||