summaryrefslogtreecommitdiffabout
path: root/kalarmd/simplealarmdaemonimpl.cpp
authorzautrix <zautrix>2005-03-26 22:32:32 (UTC)
committer zautrix <zautrix>2005-03-26 22:32:32 (UTC)
commit46b94158f6b115e175516a8432ec5b71f1403834 (patch) (side-by-side diff)
treeb075219da97f93d4e09863fda822722872f8b94b /kalarmd/simplealarmdaemonimpl.cpp
parent7177e62052b732f901eca6627825d0b38d8438be (diff)
downloadkdepimpi-46b94158f6b115e175516a8432ec5b71f1403834.zip
kdepimpi-46b94158f6b115e175516a8432ec5b71f1403834.tar.gz
kdepimpi-46b94158f6b115e175516a8432ec5b71f1403834.tar.bz2
fixes
Diffstat (limited to 'kalarmd/simplealarmdaemonimpl.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kalarmd/simplealarmdaemonimpl.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/kalarmd/simplealarmdaemonimpl.cpp b/kalarmd/simplealarmdaemonimpl.cpp
index e8ec033..b3da428 100644
--- a/kalarmd/simplealarmdaemonimpl.cpp
+++ b/kalarmd/simplealarmdaemonimpl.cpp
@@ -363,3 +363,3 @@ void SimpleAlarmDaemonImpl::fillTimerPopUp()
QTime t ( secs/3600, (secs/60)%60, secs%60 );
- mTimerPopUp->changeItem ( 1 , t.toString() + " (remaining time)");
+ mTimerPopUp->changeItem ( 1 , t.toString() + " (countdown)");
}
@@ -381,4 +381,4 @@ void SimpleAlarmDaemonImpl::fillTimerPopUp()
mTimerPopUp->insertItem( "Stop timer "+ mRunningTimerText , 0 );
- mTimerPopUp->insertItem( t.toString() + " (remaining time)",1);
- mTimerPopUp->insertItem( mRunningTimer.time().toString() + " (alarm time)",2);
+ mTimerPopUp->insertItem( t.toString() + " (countdown)",1);
+ mTimerPopUp->insertItem( mRunningTimer.time().toString() + " (alarm)",2);
} else {
@@ -562,4 +562,4 @@ void SimpleAlarmDaemonImpl::confTimer( int time )
spinm.downButton ()->setGeometry( 50,50,50,50);
- spinm.setSuffix( " m" );
- spinh.setSuffix( " h" );
+ // spinm.setSuffix( " m" );
+ //spinh.setSuffix( " h" );
spinm.setWrapping ( true );
@@ -581,3 +581,5 @@ void SimpleAlarmDaemonImpl::confTimer( int time )
QPushButton ok ( "Start timer", &dia);
+ ok.setDefault( true );
ok.setFont( fo );
+ spinh.setFocus();
lay.addWidget( &ok);
@@ -610,2 +612,3 @@ void SimpleAlarmDaemonImpl::confTimer( int time )
//minutes = 1;
+
mRunningTimer = QDateTime::currentDateTime().addSecs( minutes * 60 );