author | zecke <zecke> | 2002-09-21 12:19:02 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-09-21 12:19:02 (UTC) |
commit | 279f025b03efdade9c211dd9441eec0c2a91ad94 (patch) (unidiff) | |
tree | 39468f487c8fd6aa46ed6664314937daec7b1d99 | |
parent | 90b5f15ac863d5eb833d2d9e832b43d05c4079a4 (diff) | |
download | opie-279f025b03efdade9c211dd9441eec0c2a91ad94.zip opie-279f025b03efdade9c211dd9441eec0c2a91ad94.tar.gz opie-279f025b03efdade9c211dd9441eec0c2a91ad94.tar.bz2 |
Remove the start(void)const and end(void)const stuff
-rw-r--r-- | library/backend/event.h | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/library/backend/event.h b/library/backend/event.h index 4610d85..118523f 100644 --- a/library/backend/event.h +++ b/library/backend/event.h | |||
@@ -91,39 +91,37 @@ public: | |||
91 | const QString &description() const; | 91 | const QString &description() const; |
92 | 92 | ||
93 | void setLocation( const QString &s ); | 93 | void setLocation( const QString &s ); |
94 | const QString &location() const; | 94 | const QString &location() const; |
95 | 95 | ||
96 | void setNotes( const QString &n ); | 96 | void setNotes( const QString &n ); |
97 | const QString ¬es() const; | 97 | const QString ¬es() const; |
98 | 98 | ||
99 | void setType( Type t ); // Don't use me. | 99 | void setType( Type t ); // Don't use me. |
100 | Type type() const; // Don't use me. | 100 | Type type() const; // Don't use me. |
101 | 101 | ||
102 | void setAllDay(bool); | 102 | void setAllDay(bool); |
103 | bool isAllDay() const; | 103 | bool isAllDay() const; |
104 | 104 | ||
105 | void setStart( const QDateTime &d ); | 105 | void setStart( const QDateTime &d ); |
106 | void setStart( time_t time ); // don't use me. | 106 | void setStart( time_t time ); // don't use me. |
107 | QDateTime start( ) const; | 107 | QDateTime start( bool actual = FALSE) const; // don't use me. |
108 | QDateTime start( bool actual ) const; // don't use me. | ||
109 | time_t startTime() const { return startUTC; } // don't use me. | 108 | time_t startTime() const { return startUTC; } // don't use me. |
110 | void setEnd( const QDateTime &e ); | 109 | void setEnd( const QDateTime &e ); |
111 | void setEnd( time_t time ); // don't use me | 110 | void setEnd( time_t time ); // don't use me |
112 | QDateTime end( ) const; | 111 | QDateTime end( bool actual = FALSE ) const; // don't use me. |
113 | QDateTime end( bool actual ) const; // don't use me. | ||
114 | time_t endTime() const { return endUTC; } // don't use me. | 112 | time_t endTime() const { return endUTC; } // don't use me. |
115 | void setTimeZone( const QString & ); | 113 | void setTimeZone( const QString & ); |
116 | const QString &timeZone() const; | 114 | const QString &timeZone() const; |
117 | void setAlarm( int minutes, SoundTypeChoice ); | 115 | void setAlarm( int minutes, SoundTypeChoice ); |
118 | void clearAlarm(); | 116 | void clearAlarm(); |
119 | void setAlarm( bool b, int minutes, SoundTypeChoice ); // Don't use me. | 117 | void setAlarm( bool b, int minutes, SoundTypeChoice ); // Don't use me. |
120 | bool hasAlarm() const; | 118 | bool hasAlarm() const; |
121 | int alarmDelay() const; | 119 | int alarmDelay() const; |
122 | int alarmTime() const; // Don't use me. | 120 | int alarmTime() const; // Don't use me. |
123 | SoundTypeChoice alarmSound() const; | 121 | SoundTypeChoice alarmSound() const; |
124 | 122 | ||
125 | RepeatType repeatType() const; | 123 | RepeatType repeatType() const; |
126 | int frequency() const; | 124 | int frequency() const; |
127 | int weekOffset() const; | 125 | int weekOffset() const; |
128 | QDate repeatTill() const; | 126 | QDate repeatTill() const; |
129 | bool repeatForever() const; | 127 | bool repeatForever() const; |
@@ -328,43 +326,32 @@ inline void Event::setRepeatForever(bool b) | |||
328 | pattern.setEndDate(end().date()); | 326 | pattern.setEndDate(end().date()); |
329 | pattern.hasEndDate = !b; | 327 | pattern.hasEndDate = !b; |
330 | } | 328 | } |
331 | 329 | ||
332 | inline bool Event::repeatOnWeekDay(int day) const | 330 | inline bool Event::repeatOnWeekDay(int day) const |
333 | { | 331 | { |
334 | if (pattern.type != Weekly) | 332 | if (pattern.type != Weekly) |
335 | return FALSE; | 333 | return FALSE; |
336 | return ( (1 << (day - 1)) & pattern.days ) != 0; | 334 | return ( (1 << (day - 1)) & pattern.days ) != 0; |
337 | } | 335 | } |
338 | 336 | ||
339 | inline void Event::setRepeatOnWeekDay(int day, bool enable) | 337 | inline void Event::setRepeatOnWeekDay(int day, bool enable) |
340 | { | 338 | { |
341 | if ( repeatOnWeekDay( day ) != enable ) | 339 | if ( repeatOnWeekDay( day ) != enable ) |
342 | pattern.days ^= 1 << (day - 1); | 340 | pattern.days ^= 1 << (day - 1); |
343 | } | 341 | } |
344 | |||
345 | inline QDateTime Event::start( ) const | ||
346 | { | ||
347 | return start(FALSE); | ||
348 | } | ||
349 | |||
350 | inline QDateTime Event::end( ) const | ||
351 | { | ||
352 | return end(FALSE); | ||
353 | } | ||
354 | |||
355 | #ifdef PALMTOPCENTER | 342 | #ifdef PALMTOPCENTER |
356 | class QPC_EXPORT EffectiveEventSizeSorter : public QSorter<EffectiveEvent> | 343 | class QPC_EXPORT EffectiveEventSizeSorter : public QSorter<EffectiveEvent> |
357 | { | 344 | { |
358 | public: | 345 | public: |
359 | int compare( const EffectiveEvent& a, const EffectiveEvent& b ) const | 346 | int compare( const EffectiveEvent& a, const EffectiveEvent& b ) const |
360 | { | 347 | { |
361 | return a.size() - b.size(); | 348 | return a.size() - b.size(); |
362 | } | 349 | } |
363 | }; | 350 | }; |
364 | 351 | ||
365 | class QPC_EXPORT EffectiveEventTimeSorter : public QSorter<EffectiveEvent> | 352 | class QPC_EXPORT EffectiveEventTimeSorter : public QSorter<EffectiveEvent> |
366 | { | 353 | { |
367 | public: | 354 | public: |
368 | int compare( const EffectiveEvent& a, const EffectiveEvent& b ) const | 355 | int compare( const EffectiveEvent& a, const EffectiveEvent& b ) const |
369 | { | 356 | { |
370 | return a.start().secsTo( b.start() ); | 357 | return a.start().secsTo( b.start() ); |