-rw-r--r-- | core/pim/today/main.cpp | 3 | ||||
-rw-r--r-- | core/pim/today/today.cpp | 13 |
2 files changed, 10 insertions, 6 deletions
diff --git a/core/pim/today/main.cpp b/core/pim/today/main.cpp index 552db7c..72c0a2e 100644 --- a/core/pim/today/main.cpp +++ b/core/pim/today/main.cpp @@ -22,2 +22,4 @@ +QPEApplication *todayApp; + int main( int argc, char ** argv ) @@ -25,2 +27,3 @@ int main( int argc, char ** argv ) QPEApplication a(argc, argv); + todayApp=&a; 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 @@ -28,2 +28,3 @@ #include <qpe/global.h> +#include <qpe/qpeapplication.h> @@ -408,2 +409,5 @@ void Today::startDatebook() { */ + +extern QPEApplication *todayApp; + void Today::editEvent(const Event &e) { @@ -411,8 +415,5 @@ void Today::editEvent(const Event &e) { - //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(); } |