summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/clockapplet/clock.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/applets/clockapplet/clock.cpp b/core/applets/clockapplet/clock.cpp
index ba079bf..52d285b 100644
--- a/core/applets/clockapplet/clock.cpp
+++ b/core/applets/clockapplet/clock.cpp
@@ -51,33 +51,32 @@ 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";
- qDebug("app "+setTimeApp);
QCopEnvelope e("QPE/Application/"+setTimeApp, "setDocument(QString)");
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 );