-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 @@ -#include <qpushbutton.h> -#include <qlabel.h> - #include <qpe/datebookdb.h> @@ -29,4 +26,5 @@ #include <qpe/config.h> - +#include <qpe/qcopenvelope_qws.h> #include <qpe/qprocess.h> + #include <qdir.h> @@ -37,2 +35,4 @@ #include <qspinbox.h> +#include <qpushbutton.h> +#include <qlabel.h> @@ -191,4 +191,4 @@ void Today::getDates() /* - * - * + * Parse in the todolist.xml + * */ @@ -313,5 +313,5 @@ void Today::getTodo() void Today::startDatebook() -{ - //ugly but working - system("/opt/QtPalmtop/bin/datebook"); +{ + QCopEnvelope e("QPE/System", "execute(QString)"); + e << QString("datebook"); } @@ -323,5 +323,4 @@ void Today::startTodo() { - // QProcess *datelanch = new QProcess( this, "datebook"); - //datelanch->start(); - system("/opt/QtPalmtop/bin/todolist"); + QCopEnvelope e("QPE/System", "execute(QString)"); + e << QString("todolist"); } |