summaryrefslogtreecommitdiff
path: root/core/pim/today/today.cpp
authorhakan <hakan>2002-03-29 16:34:24 (UTC)
committer hakan <hakan>2002-03-29 16:34:24 (UTC)
commitdee656e9bf63cc44f906375d5b24cd953a945a8f (patch) (side-by-side diff)
tree5277eb78d25bd3b55dd3196dc8eff926d0e3ba4d /core/pim/today/today.cpp
parent3a1684894efb2106f957469b94350abf754a404e (diff)
downloadopie-dee656e9bf63cc44f906375d5b24cd953a945a8f.zip
opie-dee656e9bf63cc44f906375d5b24cd953a945a8f.tar.gz
opie-dee656e9bf63cc44f906375d5b24cd953a945a8f.tar.bz2
Clicking an event will now bring it up in the datebook dateentry editor
Diffstat (limited to 'core/pim/today/today.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/today.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index aef0a9b..66a4152 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -26,6 +26,7 @@
#include <qpe/resource.h>
#include <qpe/contact.h>
#include <qpe/global.h>
+#include <qpe/qpeapplication.h>
#include <qdir.h>
#include <qfile.h>
@@ -406,15 +407,15 @@ void Today::startDatebook() {
/*
* starts the edit dialog as known from datebook
*/
+
+extern QPEApplication *todayApp;
+
void Today::editEvent(const Event &e) {
startDatebook();
- //Dissabled for now as uid's not working properly
- /*
- while(!QCopChannel::isRegistered("QPE/Datebook")) sleep(1);
- QCopEnvelope env("QPE/Datebook", "editEvent(int)");
- env << e.uid();
- */
+ while(!QCopChannel::isRegistered("QPE/Datebook")) todayApp->processEvents();
+ QCopEnvelope env("QPE/Datebook", "editEvent(int)");
+ env << e.uid();
}
/*