summaryrefslogtreecommitdiff
path: root/libopie/pim/opimnotify.h
authorzecke <zecke>2003-02-21 23:31:52 (UTC)
committer zecke <zecke>2003-02-21 23:31:52 (UTC)
commit46f47c0a1e542a8b4222f3ced8f3304534c7509d (patch) (unidiff)
tree82dc97a07bae77387987711c0c21697691955937 /libopie/pim/opimnotify.h
parenta7448ec87d97a0128618e83ad7526bd884ef8853 (diff)
downloadopie-46f47c0a1e542a8b4222f3ced8f3304534c7509d.zip
opie-46f47c0a1e542a8b4222f3ced8f3304534c7509d.tar.gz
opie-46f47c0a1e542a8b4222f3ced8f3304534c7509d.tar.bz2
Add XML datebookresource
-clean up todoaccessxml header -implement some more stuff in the oeven tester -extend DefaultFactory to not crash and to use datebook -reading of OEvents is working nicely.. saving will be added tomorrow -fix spelling in ODateBookAcces
Diffstat (limited to 'libopie/pim/opimnotify.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/opimnotify.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/pim/opimnotify.h b/libopie/pim/opimnotify.h
index 3501948..b0de000 100644
--- a/libopie/pim/opimnotify.h
+++ b/libopie/pim/opimnotify.h
@@ -69,13 +69,13 @@ private:
69 * An alarm is a sound/mail/buzzer played/send 69 * An alarm is a sound/mail/buzzer played/send
70 * at a given time to inform about 70 * at a given time to inform about
71 * an Event 71 * an Event
72 */ 72 */
73class OPimAlarm : public OPimNotify { 73class OPimAlarm : public OPimNotify {
74public: 74public:
75 enum Sound{Loud=0, Silent, Custom }; 75 enum Sound{Loud=1, Silent=0, Custom=2 };
76 OPimAlarm( int sound = Silent, const QDateTime& start = QDateTime(), int duration = 0, int parent = 0 ); 76 OPimAlarm( int sound = Silent, const QDateTime& start = QDateTime(), int duration = 0, int parent = 0 );
77 OPimAlarm( const OPimAlarm& ); 77 OPimAlarm( const OPimAlarm& );
78 ~OPimAlarm(); 78 ~OPimAlarm();
79 79
80 OPimAlarm &operator=( const OPimAlarm& ); 80 OPimAlarm &operator=( const OPimAlarm& );
81 bool operator==( const OPimAlarm& ); 81 bool operator==( const OPimAlarm& );