summaryrefslogtreecommitdiff
path: root/core/pim
authorharlekin <harlekin>2002-02-16 13:47:42 (UTC)
committer harlekin <harlekin>2002-02-16 13:47:42 (UTC)
commit992d35bb675392922fe1971cb24d76acd3a63747 (patch) (side-by-side diff)
treef67ae67aebcfcba77b8198a4e5be25b3c2f15eec /core/pim
parentf866bbd2fd77f07cff04a702eb52e59fcc0013b7 (diff)
downloadopie-992d35bb675392922fe1971cb24d76acd3a63747.zip
opie-992d35bb675392922fe1971cb24d76acd3a63747.tar.gz
opie-992d35bb675392922fe1971cb24d76acd3a63747.tar.bz2
QCopEnvelope instead of system()
Diffstat (limited to 'core/pim') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/today.cpp23
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
@@ -21,20 +21,20 @@
#include "minidom.h"
#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>
#include <qdatetime.h>
#include <qtextstream.h>
#include <qcheckbox.h>
#include <qspinbox.h>
+#include <qpushbutton.h>
+#include <qlabel.h>
//#include <iostream.h>
//#include <unistd.h>
@@ -189,8 +189,8 @@ void Today::getDates()
}
/*
- *
- *
+ * Parse in the todolist.xml
+ *
*/
QList<TodoItem> Today::loadTodo(const char *filename)
{
@@ -311,9 +311,9 @@ void Today::getTodo()
* lanches datebook
*/
void Today::startDatebook()
-{
- //ugly but working
- system("/opt/QtPalmtop/bin/datebook");
+{
+ QCopEnvelope e("QPE/System", "execute(QString)");
+ e << QString("datebook");
}
/*
@@ -321,9 +321,8 @@ 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");
}
/*