author | tille <tille> | 2002-07-06 14:34:09 (UTC) |
---|---|---|
committer | tille <tille> | 2002-07-06 14:34:09 (UTC) |
commit | 76685f88ebcfd475c2d3c6d8c69271883053b09f (patch) (side-by-side diff) | |
tree | 35289cc1378ac48a3781c049ba657455d5c18d98 | |
parent | 2d2eda28dd68bb989c3af8bb7f95d8255e886dda (diff) | |
download | opie-76685f88ebcfd475c2d3c6d8c69271883053b09f.zip opie-76685f88ebcfd475c2d3c6d8c69271883053b09f.tar.gz opie-76685f88ebcfd475c2d3c6d8c69271883053b09f.tar.bz2 |
clockapplet uses qcop call to open settime dialog
-rw-r--r-- | core/applets/clockapplet/clock.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/core/applets/clockapplet/clock.cpp b/core/applets/clockapplet/clock.cpp index c186fb3..ba079bf 100644 --- a/core/applets/clockapplet/clock.cpp +++ b/core/applets/clockapplet/clock.cpp @@ -23,4 +23,5 @@ #include <qpe/global.h> #include <qpe/qpeapplication.h> +#include <qpe/qcopenvelope_qws.h> #include <qpe/config.h> @@ -32,4 +33,5 @@ #include <qtimer.h> #include <qpopupmenu.h> +#include <qfile.h> #include <stdlib.h> @@ -59,5 +61,14 @@ void LauncherClock::readConfig() { void LauncherClock::mouseReleaseEvent( QMouseEvent * ) { - Global::execute( "systemtime" ); + QCString setTimeApp; + if (QFile::exists(QPEApplication::qpeDir()+"bin/netsystemtime")) + setTimeApp="netsystemtime"; + else setTimeApp="systemtime"; + qDebug("app "+setTimeApp); + QCopEnvelope e("QPE/Application/"+setTimeApp, "setDocument(QString)"); + QString lf = QString::null; + + e << lf; + } |