summaryrefslogtreecommitdiff
authortille <tille>2002-10-31 20:23:34 (UTC)
committer tille <tille>2002-10-31 20:23:34 (UTC)
commit50f1091ee877020c9864ce24202951f49bec8cd7 (patch) (side-by-side diff)
tree6d11eacb859a0024a9828210009e83173074a563
parenta491aa2ba326826b7493caa83fc6050e11d53be5 (diff)
downloadopie-50f1091ee877020c9864ce24202951f49bec8cd7.zip
opie-50f1091ee877020c9864ce24202951f49bec8cd7.tar.gz
opie-50f1091ee877020c9864ce24202951f49bec8cd7.tar.bz2
netsystemtime does not exist anymore
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/clockapplet/clock.cpp7
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
@@ -52,32 +52,29 @@ LauncherClock::LauncherClock( QWidget *parent ) : QLabel( parent )
void LauncherClock::readConfig() {
Config config( "qpe" );
config.setGroup( "Time" );
ampmFormat = config.readBoolEntry( "AMPM", TRUE );
config.setGroup( "Date" );
format = config.readNumEntry("ClockApplet",0);
}
void LauncherClock::mouseReleaseEvent( QMouseEvent * )
{
QCString setTimeApp;
- if (QFile::exists(QPEApplication::qpeDir()+"bin/netsystemtime"))
- setTimeApp="netsystemtime";
- else setTimeApp="systemtime";
+ setTimeApp="systemtime";
QCopEnvelope e("QPE/Application/"+setTimeApp, "setDocument(QString)");
- QString lf = QString::null;
+ QString lf = QString::null;
e << lf;
-
}
void LauncherClock::timerEvent( QTimerEvent *e )
{
if ( !e || e->timerId() == timerId ) {
killTimer( timerId );
changeTime();
QTime t = QTime::currentTime();
int ms = (60 - t.second())*1000 - t.msec();
timerId = startTimer( ms );
} else {