-rw-r--r-- | korganizer/mainwindow.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index 1320231..63053a5 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp @@ -374,4 +374,7 @@ MainWindow::MainWindow( QWidget *parent, const char *name, QString msg) : //toggleBeamReceive(); - - QTimer::singleShot( 1000, mView, SLOT ( checkAlarms() )); + int tiint= 3000; +#ifndef DESKTOP_VERSION + tiint = 5000; +#endif + QTimer::singleShot( tiint, mView, SLOT ( checkAlarms() )); } |