author | zecke <zecke> | 2003-10-02 19:52:46 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-10-02 19:52:46 (UTC) |
commit | e4fc6c395dd0a7400ed2cf76b3148dd7f535c2ea (patch) (unidiff) | |
tree | 8857daa299b5d900c10e772c01121299ba3b0dcf | |
parent | 0a9b6ef6ef6fd8d06d420fc25e8a67545815dc39 (diff) | |
download | opie-e4fc6c395dd0a7400ed2cf76b3148dd7f535c2ea.zip opie-e4fc6c395dd0a7400ed2cf76b3148dd7f535c2ea.tar.gz opie-e4fc6c395dd0a7400ed2cf76b3148dd7f535c2ea.tar.bz2 |
Add coder comments and issue for ODP
-rw-r--r-- | library/datebookmonth.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/datebookmonth.h b/library/datebookmonth.h index cb436a8..46b02c8 100644 --- a/library/datebookmonth.h +++ b/library/datebookmonth.h | |||
@@ -145,22 +145,24 @@ private: | |||
145 | }; | 145 | }; |
146 | 146 | ||
147 | class DateBookMonthPrivate; | 147 | class DateBookMonthPrivate; |
148 | class DateBookMonth : public QVBox | 148 | class DateBookMonth : public QVBox |
149 | { | 149 | { |
150 | Q_OBJECT | 150 | Q_OBJECT |
151 | 151 | ||
152 | public: | 152 | public: |
153 | /* ac = Auto Close */ | ||
153 | DateBookMonth( QWidget *parent = 0, const char *name = 0, bool ac = FALSE, | 154 | DateBookMonth( QWidget *parent = 0, const char *name = 0, bool ac = FALSE, |
154 | DateBookDB *data = 0 ); | 155 | DateBookDB *data = 0 ); |
155 | ~DateBookMonth(); | 156 | ~DateBookMonth(); |
156 | QDate selectedDate() const; | 157 | QDate selectedDate() const; |
157 | 158 | ||
158 | signals: | 159 | signals: |
160 | /* ### FIXME add a signal with QDate -zecke */ | ||
159 | void dateClicked( int year, int month, int day ); | 161 | void dateClicked( int year, int month, int day ); |
160 | 162 | ||
161 | public slots: | 163 | public slots: |
162 | void setDate( int y, int m ); | 164 | void setDate( int y, int m ); |
163 | void setDate( int y, int m, int d ); | 165 | void setDate( int y, int m, int d ); |
164 | void setDate( QDate ); | 166 | void setDate( QDate ); |
165 | void redraw(); | 167 | void redraw(); |
166 | void slotWeekChange( bool ); | 168 | void slotWeekChange( bool ); |