summaryrefslogtreecommitdiff
authorzecke <zecke>2004-01-27 11:38:38 (UTC)
committer zecke <zecke>2004-01-27 11:38:38 (UTC)
commit068604863e009b20790cd2aa482e216eb40b8876 (patch) (side-by-side diff)
treebdc61cbe8826d083ba5b52c8b8e3db7ae108dee6
parent60d37f75d5189fbf7bea0850399abc57b6d60097 (diff)
downloadopie-068604863e009b20790cd2aa482e216eb40b8876.zip
opie-068604863e009b20790cd2aa482e216eb40b8876.tar.gz
opie-068604863e009b20790cd2aa482e216eb40b8876.tar.bz2
Do not setDocument if systemtime is not document centric
use raise()
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/clockapplet/clock.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/applets/clockapplet/clock.cpp b/core/applets/clockapplet/clock.cpp
index 5fb8f44..aadd9b6 100644
--- a/core/applets/clockapplet/clock.cpp
+++ b/core/applets/clockapplet/clock.cpp
@@ -29,52 +29,49 @@ LauncherClock::LauncherClock( QWidget *parent ) : QLabel( parent )
// If you want a sunken border around the clock do this:
// setFrameStyle( QFrame::Panel | QFrame::Sunken );
//setFont( QFont( "Helvetica", , QFont::Normal ) );
connect( qApp, SIGNAL( timeChanged() ), this, SLOT( updateTime( ) ) );
connect( qApp, SIGNAL( clockChanged( bool ) ),
this, SLOT( slotClockChanged( bool ) ) );
readConfig();
timerId = 0;
timerEvent( 0 );
show();
}
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;
setTimeApp="systemtime";
- QCopEnvelope e("QPE/Application/"+setTimeApp, "setDocument(QString)");
- QString lf = QString::null;
-
- e << lf;
+ QCopEnvelope e("QPE/Application/"+setTimeApp, "raise()");
}
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 {
QLabel::timerEvent( e );
}
}
void LauncherClock::updateTime( void )
{
changeTime();
}
void LauncherClock::changeTime( void )
{
QTime tm = QDateTime::currentDateTime().time();