summaryrefslogtreecommitdiff
path: root/libopie/otimepicker.h
authorzecke <zecke>2004-02-19 02:05:37 (UTC)
committer zecke <zecke>2004-02-19 02:05:37 (UTC)
commit34e732b3490bcad2cb05a1252ef5f06b3feef9ad (patch) (unidiff)
tree1114cf4d32dd0955550536f93b4054f76207c90e /libopie/otimepicker.h
parentf98fdfa6509fd1db5ea9ee834b5808ee12c8e697 (diff)
downloadopie-34e732b3490bcad2cb05a1252ef5f06b3feef9ad.zip
opie-34e732b3490bcad2cb05a1252ef5f06b3feef9ad.tar.gz
opie-34e732b3490bcad2cb05a1252ef5f06b3feef9ad.tar.bz2
Add notes for API fixes and BC stuff
Diffstat (limited to 'libopie/otimepicker.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/otimepicker.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libopie/otimepicker.h b/libopie/otimepicker.h
index 6a9e040..8df7d10 100644
--- a/libopie/otimepicker.h
+++ b/libopie/otimepicker.h
@@ -57,24 +57,27 @@ class OTimePicker: public QWidget {
57/** 57/**
58 * 58 *
59 * @short A small dialog to pick a time 59 * @short A small dialog to pick a time
60 * @version 1.0 60 * @version 1.0
61 * @author Stefan Eilers 61 * @author Stefan Eilers
62 */ 62 */
63 63
64class OTimePickerDialog: public OTimePickerDialogBase { 64class OTimePickerDialog: public OTimePickerDialogBase {
65 Q_OBJECT 65 Q_OBJECT
66 66
67 public: 67 public:
68 OTimePickerDialog ( QWidget* parent = 0, const char* name = NULL, WFlags fl = 0 ); 68 OTimePickerDialog ( QWidget* parent = 0, const char* name = NULL, WFlags fl = 0 );
69 /**
70 * @todo make it non line! See KDE guide for BC
71 */
69 ~OTimePickerDialog() { }; 72 ~OTimePickerDialog() { };
70 73
71 QTime time()const; 74 QTime time()const;
72 75
73 public slots: 76 public slots:
74 void setTime( const QTime& time ); 77 void setTime( const QTime& time );
75 void setHour( const QString& hour ); 78 void setHour( const QString& hour );
76 void setMinute( const QString& minute ); 79 void setMinute( const QString& minute );
77 80
78 private: 81 private:
79 QTime m_time; 82 QTime m_time;
80 class Private; 83 class Private;