-rw-r--r-- | core/launcher/main.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp index 8974ced..715239f 100644 --- a/core/launcher/main.cpp +++ b/core/launcher/main.cpp | |||
@@ -32,4 +32,5 @@ | |||
32 | #include <opie/odevice.h> | 32 | #include <opie/odevice.h> |
33 | 33 | ||
34 | #include <qmessagebox.h> | ||
34 | #include <qfile.h> | 35 | #include <qfile.h> |
35 | #include <qimage.h> | 36 | #include <qimage.h> |
@@ -118,4 +119,16 @@ int initApplication( int argc, char ** argv ) | |||
118 | d->show(); | 119 | d->show(); |
119 | 120 | ||
121 | if ( QDate::currentDate ( ). year ( ) < 2000 ) { | ||
122 | if ( QMessageBox::information ( 0, DesktopApplication::tr( "Information" ), DesktopApplication::tr( "<p>The system date doesn't seem to be valid.\n(%1)</p><p>Do you want to correct the clock ?</p>" ). arg( TimeString::dateString ( QDate::currentDate ( ))), QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) { | ||
123 | QCString app; | ||
124 | if ( QFile::exists ( QPEApplication::qpeDir ( ) + "/bin/netsystemtime" )) | ||
125 | app = "netsystemtime"; | ||
126 | else | ||
127 | app = "systemtime"; | ||
128 | QCopEnvelope e ( "QPE/Application/" + app, "setDocument(QString)" ); | ||
129 | e << QString ( ); | ||
130 | } | ||
131 | } | ||
132 | |||
120 | int rv = a.exec(); | 133 | int rv = a.exec(); |
121 | 134 | ||