summaryrefslogtreecommitdiff
authorharlekin <harlekin>2002-02-16 13:47:42 (UTC)
committer harlekin <harlekin>2002-02-16 13:47:42 (UTC)
commit992d35bb675392922fe1971cb24d76acd3a63747 (patch) (unidiff)
treef67ae67aebcfcba77b8198a4e5be25b3c2f15eec
parentf866bbd2fd77f07cff04a702eb52e59fcc0013b7 (diff)
downloadopie-992d35bb675392922fe1971cb24d76acd3a63747.zip
opie-992d35bb675392922fe1971cb24d76acd3a63747.tar.gz
opie-992d35bb675392922fe1971cb24d76acd3a63747.tar.bz2
QCopEnvelope instead of system()
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/today.cpp19
1 files changed, 9 insertions, 10 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,3 +191,3 @@ void Today::getDates()
191/* 191/*
192 * 192 * Parse in the todolist.xml
193 * 193 *
@@ -314,4 +314,4 @@ 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}