-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 @@ -31,6 +31,7 @@ #include <opie/odevice.h> +#include <qmessagebox.h> #include <qfile.h> #include <qimage.h> #include <qwindowsystem_qws.h> @@ -117,6 +118,18 @@ int initApplication( int argc, char ** argv ) d->show(); + if ( QDate::currentDate ( ). year ( ) < 2000 ) { + 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 ) { + QCString app; + if ( QFile::exists ( QPEApplication::qpeDir ( ) + "/bin/netsystemtime" )) + app = "netsystemtime"; + else + app = "systemtime"; + QCopEnvelope e ( "QPE/Application/" + app, "setDocument(QString)" ); + e << QString ( ); + } + } + int rv = a.exec(); delete d; |