summaryrefslogtreecommitdiff
path: root/core/pim/datebook/timepicker.h
authorumopapisdn <umopapisdn>2003-04-13 23:14:23 (UTC)
committer umopapisdn <umopapisdn>2003-04-13 23:14:23 (UTC)
commitef69f1d1ca947a0b972e3f8d635883ae7ef0ae23 (patch) (side-by-side diff)
tree23de36544964e52be73c31cd467838d473c97293 /core/pim/datebook/timepicker.h
parent377a172d8b497674d14d7e3580a008228f83d081 (diff)
downloadopie-ef69f1d1ca947a0b972e3f8d635883ae7ef0ae23.zip
opie-ef69f1d1ca947a0b972e3f8d635883ae7ef0ae23.tar.gz
opie-ef69f1d1ca947a0b972e3f8d635883ae7ef0ae23.tar.bz2
Bugfix: (Bug #0000716) The timepicker now works in am/pm mode also, I also changed datebook to use the otimepicker class in libopie.
Diffstat (limited to 'core/pim/datebook/timepicker.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/timepicker.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/core/pim/datebook/timepicker.h b/core/pim/datebook/timepicker.h
deleted file mode 100644
index 1c35600..0000000
--- a/core/pim/datebook/timepicker.h
+++ b/dev/null
@@ -1,32 +0,0 @@
-#ifndef TIMEPICKER_H
-#define TIMEPICKER_H
-
-#include <qwidget.h>
-#include <qvaluelist.h>
-#include <opie/oclickablelabel.h>
-#include <qdatetime.h>
-
-class TimePicker: public QWidget {
- Q_OBJECT
-
- public:
- TimePicker(QWidget* parent = 0, const char* name = 0,
- WFlags fl = 0);
- void setHour(int h);
- void setMinute(int m);
-
- private:
- QValueList<OClickableLabel *> hourLst;
- QValueList<OClickableLabel *> minuteLst;
- QTime tm;
-
- private slots:
- void slotHour(bool b);
- void slotMinute(bool b);
-
- signals:
- void timeChanged(const QTime &);
-};
-
-
-#endif