summaryrefslogtreecommitdiff
path: root/core
authorharlekin <harlekin>2002-06-11 17:05:46 (UTC)
committer harlekin <harlekin>2002-06-11 17:05:46 (UTC)
commit53cbd5404cea16ec1ddbd2e264fcc42acfb453c8 (patch) (unidiff)
tree2daf9f13660755c1dca9594375d19184888c6338 /core
parent5cff977f8b96077e7d6664d965be75d437a07e42 (diff)
downloadopie-53cbd5404cea16ec1ddbd2e264fcc42acfb453c8.zip
opie-53cbd5404cea16ec1ddbd2e264fcc42acfb453c8.tar.gz
opie-53cbd5404cea16ec1ddbd2e264fcc42acfb453c8.tar.bz2
update
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/today.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index 69a0f75..06cfa01 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -57,9 +57,10 @@ int ONLY_LATER;
57int AUTOSTART; 57int AUTOSTART;
58int NEW_START=1; 58int NEW_START=1;
59QString AUTOSTART_TIMER; 59QString AUTOSTART_TIMER;
60int NEXTDAYS=1;
60 61
61/* 62
62 * Constructs a Example which is a child of 'parent', with the 63/* Constructs a Example which is a child of 'parent', with the
63 * name 'name' and widget flags set to 'f' 64 * name 'name' and widget flags set to 'f'
64 */ 65 */
65Today::Today( QWidget* parent, const char* name, WFlags fl ) 66Today::Today( QWidget* parent, const char* name, WFlags fl )
@@ -422,11 +423,13 @@ void Today::getTodo() {
422 423
423 424
424/* 425/*
425 * launch addressbook 426 * launch addressbook (personal card)
426 */ 427 */
427void Today::editCard() { 428void Today::editCard() {
428 QCopEnvelope e("QPE/System", "execute(QString)"); 429 QCopEnvelope w("QPE/System", "execute(QString)");
429 e << QString("addressbook"); 430 w << QString("addressbook");
431
432 QCopEnvelope v("QPE/Addressbook", "editPersonalAndClose()");
430} 433}
431 434
432/* 435/*
@@ -441,6 +444,7 @@ void Today::startDatebook() {
441 * starts the edit dialog as known from datebook 444 * starts the edit dialog as known from datebook
442 */ 445 */
443 446
447
444extern QPEApplication *todayApp; 448extern QPEApplication *todayApp;
445 449
446void Today::editEvent(const Event &e) { 450void Today::editEvent(const Event &e) {