author | tille <tille> | 2002-10-31 20:23:34 (UTC) |
---|---|---|
committer | tille <tille> | 2002-10-31 20:23:34 (UTC) |
commit | 50f1091ee877020c9864ce24202951f49bec8cd7 (patch) (unidiff) | |
tree | 6d11eacb859a0024a9828210009e83173074a563 | |
parent | a491aa2ba326826b7493caa83fc6050e11d53be5 (diff) | |
download | opie-50f1091ee877020c9864ce24202951f49bec8cd7.zip opie-50f1091ee877020c9864ce24202951f49bec8cd7.tar.gz opie-50f1091ee877020c9864ce24202951f49bec8cd7.tar.bz2 |
netsystemtime does not exist anymore
-rw-r--r-- | core/applets/clockapplet/clock.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/core/applets/clockapplet/clock.cpp b/core/applets/clockapplet/clock.cpp index 52d285b..19d3f6c 100644 --- a/core/applets/clockapplet/clock.cpp +++ b/core/applets/clockapplet/clock.cpp | |||
@@ -56,24 +56,21 @@ void LauncherClock::readConfig() { | |||
56 | ampmFormat = config.readBoolEntry( "AMPM", TRUE ); | 56 | ampmFormat = config.readBoolEntry( "AMPM", TRUE ); |
57 | config.setGroup( "Date" ); | 57 | config.setGroup( "Date" ); |
58 | format = config.readNumEntry("ClockApplet",0); | 58 | format = config.readNumEntry("ClockApplet",0); |
59 | } | 59 | } |
60 | 60 | ||
61 | void LauncherClock::mouseReleaseEvent( QMouseEvent * ) | 61 | void LauncherClock::mouseReleaseEvent( QMouseEvent * ) |
62 | { | 62 | { |
63 | QCString setTimeApp; | 63 | QCString setTimeApp; |
64 | if (QFile::exists(QPEApplication::qpeDir()+"bin/netsystemtime")) | 64 | setTimeApp="systemtime"; |
65 | setTimeApp="netsystemtime"; | ||
66 | else setTimeApp="systemtime"; | ||
67 | QCopEnvelope e("QPE/Application/"+setTimeApp, "setDocument(QString)"); | 65 | QCopEnvelope e("QPE/Application/"+setTimeApp, "setDocument(QString)"); |
68 | QString lf = QString::null; | 66 | QString lf = QString::null; |
69 | 67 | ||
70 | e << lf; | 68 | e << lf; |
71 | |||
72 | } | 69 | } |
73 | 70 | ||
74 | 71 | ||
75 | void LauncherClock::timerEvent( QTimerEvent *e ) | 72 | void LauncherClock::timerEvent( QTimerEvent *e ) |
76 | { | 73 | { |
77 | if ( !e || e->timerId() == timerId ) { | 74 | if ( !e || e->timerId() == timerId ) { |
78 | killTimer( timerId ); | 75 | killTimer( timerId ); |
79 | changeTime(); | 76 | changeTime(); |