author | zautrix <zautrix> | 2005-10-23 23:46:14 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-10-23 23:46:14 (UTC) |
commit | ae59704dc0643963d0ed648baf7186b741c3ecb2 (patch) (side-by-side diff) | |
tree | 4a9791decd5dca230498408bec2d64f6c25ddb3e | |
parent | c1cb0653160e8e449d07a0df7b84b2398c0201fb (diff) | |
download | kdepimpi-ae59704dc0643963d0ed648baf7186b741c3ecb2.zip kdepimpi-ae59704dc0643963d0ed648baf7186b741c3ecb2.tar.gz kdepimpi-ae59704dc0643963d0ed648baf7186b741c3ecb2.tar.bz2 |
shorter delay
-rw-r--r-- | kalarmd/simplealarmdaemonimpl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kalarmd/simplealarmdaemonimpl.cpp b/kalarmd/simplealarmdaemonimpl.cpp index 553e377..82873e1 100644 --- a/kalarmd/simplealarmdaemonimpl.cpp +++ b/kalarmd/simplealarmdaemonimpl.cpp @@ -330,3 +330,3 @@ void SimpleAlarmDaemonImpl::recieve( const QCString& msg, const QByteArray& ) } - QTimer::singleShot( 5000, this, SLOT ( writeFile() ) ); + QTimer::singleShot( 2000, this, SLOT ( writeFile() ) ); return; @@ -356,3 +356,3 @@ void SimpleAlarmDaemonImpl::recieve( const QCString& msg, const QByteArray& ) - QTimer::singleShot( 5000, this, SLOT ( writeFile() ) ); + QTimer::singleShot( 2000, this, SLOT ( writeFile() ) ); startAlarm( mAlarmMessage, filename ); @@ -629,3 +629,3 @@ void SimpleAlarmDaemonImpl::confTimer( int time ) mTimerStartLabel->show(); - QTimer::singleShot( 3000, mTimerStartLabel, SLOT ( hide() ) ); + QTimer::singleShot( 5000, mTimerStartLabel, SLOT ( hide() ) ); mTimerTime = 1; @@ -671,3 +671,3 @@ void SimpleAlarmDaemonImpl::simulate() { - QTimer::singleShot( 5000, this, SLOT ( writeFile() ) ); + QTimer::singleShot( 2000, this, SLOT ( writeFile() ) ); QString filename = getenv("QPEDIR") ; |