-rw-r--r-- | korganizer/kotodoview.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index 8d957eb..7349d20 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp | |||
@@ -1192,6 +1192,7 @@ void KOTodoView::itemDoubleClicked(QListViewItem *item) | |||
1192 | if ( t->runTime() < 15) { | 1192 | if ( t->runTime() < 15) { |
1193 | t->stopRunning(); | 1193 | t->stopRunning(); |
1194 | mActiveItem->construct(); | 1194 | mActiveItem->construct(); |
1195 | topLevelWidget()->setCaption(i18n("Todo stopped - no data saved because runtime was < 15 sec!")); | ||
1195 | return; | 1196 | return; |
1196 | } | 1197 | } |
1197 | else | 1198 | else |
@@ -1200,6 +1201,7 @@ void KOTodoView::itemDoubleClicked(QListViewItem *item) | |||
1200 | } else { | 1201 | } else { |
1201 | t->setRunning( true ); | 1202 | t->setRunning( true ); |
1202 | mActiveItem->construct(); | 1203 | mActiveItem->construct(); |
1204 | topLevelWidget()->setCaption(i18n("Todo started! Double click again to stop!")); | ||
1203 | return; | 1205 | return; |
1204 | } | 1206 | } |
1205 | } | 1207 | } |