-rw-r--r-- | kalarmd/simplealarmdaemonimpl.cpp | 16 | ||||
-rw-r--r-- | kalarmd/simplealarmdaemonimpl.h | 1 |
2 files changed, 10 insertions, 7 deletions
diff --git a/kalarmd/simplealarmdaemonimpl.cpp b/kalarmd/simplealarmdaemonimpl.cpp index 2bc6643..471836b 100644 --- a/kalarmd/simplealarmdaemonimpl.cpp +++ b/kalarmd/simplealarmdaemonimpl.cpp | |||
@@ -50,18 +50,17 @@ SimpleAlarmDaemonImpl::SimpleAlarmDaemonImpl( QWidget *parent ) | |||
50 | mAlarmDialog = new AlarmDialog( 0 ); | 50 | mAlarmDialog = new AlarmDialog( 0 ); |
51 | mPopUp = new QPopupMenu( 0 ); | 51 | mPopUp = new QPopupMenu( 0 ); |
52 | mPopUp->insertItem( "Addresses", this, SLOT ( showAdd() ) ); | ||
53 | mPopUp->insertSeparator(); | ||
54 | mPopUp->insertItem( "Multi Sync", this, SLOT ( ringSync() ) ); | ||
55 | mPopUp->insertSeparator(); | ||
56 | mPopUp->insertItem( "What's Next?", this, SLOT ( showWN() ) ); | 52 | mPopUp->insertItem( "What's Next?", this, SLOT ( showWN() ) ); |
53 | mPopUp->insertItem( "Next Days!", this, SLOT ( showKO() ) ); | ||
57 | mPopUp->insertSeparator(); | 54 | mPopUp->insertSeparator(); |
58 | mPopUp->insertItem( "What's Todo?", this, SLOT ( showTodo() ) ); | 55 | mPopUp->insertItem( "What's Todo?", this, SLOT ( showTodo() ) ); |
59 | mPopUp->insertSeparator(); | 56 | mPopUp->insertSeparator(); |
60 | mPopUp->insertItem( "Next Days!", this, SLOT ( showKO() ) ); | 57 | mPopUp->insertItem( "Addresses", this, SLOT ( showAdd() ) ); |
61 | mPopUp->insertSeparator(); | 58 | mPopUp->insertSeparator(); |
62 | mPopUp->insertItem( "Edit Journal", this, SLOT ( writeJournal() ) ); | 59 | mPopUp->insertItem( "Edit Journal", this, SLOT ( writeJournal() ) ); |
63 | mPopUp->insertSeparator(); | ||
64 | mPopUp->insertItem( "New Event", this, SLOT ( newEvent() ) ); | 60 | mPopUp->insertItem( "New Event", this, SLOT ( newEvent() ) ); |
65 | mPopUp->insertItem( "New Todo", this, SLOT ( newTodo() ) ); | 61 | mPopUp->insertItem( "New Todo", this, SLOT ( newTodo() ) ); |
62 | mPopUp->insertItem( "New Mail", this, SLOT ( newMail() ) ); | ||
63 | mPopUp->insertSeparator(); | ||
64 | mPopUp->insertItem( "Multi Sync", this, SLOT ( ringSync() ) ); | ||
66 | mTimerPopUp = new QPopupMenu( mPopUp ); | 65 | mTimerPopUp = new QPopupMenu( mPopUp ); |
67 | 66 | ||
@@ -507,5 +506,8 @@ void SimpleAlarmDaemonImpl::newEvent() | |||
507 | 506 | ||
508 | } | 507 | } |
509 | 508 | void SimpleAlarmDaemonImpl::newMail() | |
509 | { | ||
510 | QCopEnvelope e("QPE/Application/kmpi", "newMail()"); | ||
511 | } | ||
510 | void SimpleAlarmDaemonImpl::showAdd() | 512 | void SimpleAlarmDaemonImpl::showAdd() |
511 | { | 513 | { |
diff --git a/kalarmd/simplealarmdaemonimpl.h b/kalarmd/simplealarmdaemonimpl.h index 1c16af8..32a3867 100644 --- a/kalarmd/simplealarmdaemonimpl.h +++ b/kalarmd/simplealarmdaemonimpl.h | |||
@@ -49,4 +49,5 @@ class SimpleAlarmDaemonImpl : public QLabel | |||
49 | void showWN(); | 49 | void showWN(); |
50 | void showAdd(); | 50 | void showAdd(); |
51 | void newMail(); | ||
51 | void ringSync(); | 52 | void ringSync(); |
52 | void showTodo(); | 53 | void showTodo(); |