author | zecke <zecke> | 2002-09-09 14:30:03 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-09-09 14:30:03 (UTC) |
commit | fc6ba68c32bd06fe61bd5aba4babb72656072c9f (patch) (unidiff) | |
tree | 80dfcf4976d100d8ecc8e1b178b7fac909847c54 /libopie/otimepicker.h | |
parent | ecba23296e616d303e980b1dad8b9af31860e139 (diff) | |
download | opie-fc6ba68c32bd06fe61bd5aba4babb72656072c9f.zip opie-fc6ba68c32bd06fe61bd5aba4babb72656072c9f.tar.gz opie-fc6ba68c32bd06fe61bd5aba4babb72656072c9f.tar.bz2 |
make it compile
-rw-r--r-- | libopie/otimepicker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/otimepicker.h b/libopie/otimepicker.h index 3de6698..825e2d6 100644 --- a/libopie/otimepicker.h +++ b/libopie/otimepicker.h | |||
@@ -1,26 +1,26 @@ | |||
1 | #ifndef OTIMEPICKER_H | 1 | #ifndef OTIMEPICKER_H |
2 | #define OTIMEPICKER_H | 2 | #define OTIMEPICKER_H |
3 | 3 | ||
4 | #include <qwidget.h> | 4 | #include <qwidget.h> |
5 | #include <qvaluelist.h> | 5 | #include <qvaluelist.h> |
6 | #include <qdatetime.h> | 6 | #include <qdatetime.h> |
7 | #include <qdialog.h> | 7 | #include <qdialog.h> |
8 | 8 | ||
9 | #include <opie/oclickablelabel.h> | 9 | #include <opie/oclickablelabel.h> |
10 | #include <opie/otimepickerbase.h> | 10 | #include "otimepickerbase.h" |
11 | 11 | ||
12 | class OTimePicker: public QWidget { | 12 | class OTimePicker: public QWidget { |
13 | Q_OBJECT | 13 | Q_OBJECT |
14 | 14 | ||
15 | public: | 15 | public: |
16 | OTimePicker(QWidget* parent = 0, const char* name = 0, | 16 | OTimePicker(QWidget* parent = 0, const char* name = 0, |
17 | WFlags fl = 0); | 17 | WFlags fl = 0); |
18 | void setHour(int h); | 18 | void setHour(int h); |
19 | void setMinute(int m); | 19 | void setMinute(int m); |
20 | 20 | ||
21 | private: | 21 | private: |
22 | QValueList<OClickableLabel *> hourLst; | 22 | QValueList<OClickableLabel *> hourLst; |
23 | QValueList<OClickableLabel *> minuteLst; | 23 | QValueList<OClickableLabel *> minuteLst; |
24 | QTime tm; | 24 | QTime tm; |
25 | 25 | ||
26 | private slots: | 26 | private slots: |