-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 @@ -22,12 +22,10 @@ #include "TodoItem.h" -#include <qpushbutton.h> -#include <qlabel.h> - #include <qpe/datebookdb.h> #include <qpe/timestring.h> #include <qpe/config.h> - +#include <qpe/qcopenvelope_qws.h> #include <qpe/qprocess.h> + #include <qdir.h> #include <qfile.h> @@ -36,4 +34,6 @@ #include <qcheckbox.h> #include <qspinbox.h> +#include <qpushbutton.h> +#include <qlabel.h> //#include <iostream.h> @@ -190,6 +190,6 @@ void Today::getDates() /* - * - * + * Parse in the todolist.xml + * */ QList<TodoItem> Today::loadTodo(const char *filename) @@ -312,7 +312,7 @@ void Today::getTodo() */ void Today::startDatebook() -{ - //ugly but working - system("/opt/QtPalmtop/bin/datebook"); +{ + QCopEnvelope e("QPE/System", "execute(QString)"); + e << QString("datebook"); } @@ -322,7 +322,6 @@ void Today::startDatebook() 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"); } |