-rw-r--r-- | core/pim/today/today.cpp | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 381ae6b..00a8842 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp | |||
@@ -23,5 +23,2 @@ | |||
23 | 23 | ||
24 | #include <qpushbutton.h> | ||
25 | #include <qlabel.h> | ||
26 | |||
27 | #include <qpe/datebookdb.h> | 24 | #include <qpe/datebookdb.h> |
@@ -29,4 +26,5 @@ | |||
29 | #include <qpe/config.h> | 26 | #include <qpe/config.h> |
30 | 27 | #include <qpe/qcopenvelope_qws.h> | |
31 | #include <qpe/qprocess.h> | 28 | #include <qpe/qprocess.h> |
29 | |||
32 | #include <qdir.h> | 30 | #include <qdir.h> |
@@ -37,2 +35,4 @@ | |||
37 | #include <qspinbox.h> | 35 | #include <qspinbox.h> |
36 | #include <qpushbutton.h> | ||
37 | #include <qlabel.h> | ||
38 | 38 | ||
@@ -191,4 +191,4 @@ void Today::getDates() | |||
191 | /* | 191 | /* |
192 | * | 192 | * Parse in the todolist.xml |
193 | * | 193 | * |
194 | */ | 194 | */ |
@@ -313,5 +313,5 @@ void Today::getTodo() | |||
313 | void Today::startDatebook() | 313 | void Today::startDatebook() |
314 | { | 314 | { |
315 | //ugly but working | 315 | QCopEnvelope e("QPE/System", "execute(QString)"); |
316 | system("/opt/QtPalmtop/bin/datebook"); | 316 | e << QString("datebook"); |
317 | } | 317 | } |
@@ -323,5 +323,4 @@ void Today::startTodo() | |||
323 | { | 323 | { |
324 | // QProcess *datelanch = new QProcess( this, "datebook"); | 324 | QCopEnvelope e("QPE/System", "execute(QString)"); |
325 | //datelanch->start(); | 325 | e << QString("todolist"); |
326 | system("/opt/QtPalmtop/bin/todolist"); | ||
327 | } | 326 | } |