author | sandman <sandman> | 2002-10-29 22:09:37 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-10-29 22:09:37 (UTC) |
commit | 1e294abab44c96f1fdf4fe0e7083a19fbeb970e0 (patch) (side-by-side diff) | |
tree | daa27f50fcd27d00ef165e46a4ba948346fc7437 /core | |
parent | 7c340d2a08601f4d27f6d2a407fc0de437b8efad (diff) | |
download | opie-1e294abab44c96f1fdf4fe0e7083a19fbeb970e0.zip opie-1e294abab44c96f1fdf4fe0e7083a19fbeb970e0.tar.gz opie-1e294abab44c96f1fdf4fe0e7083a19fbeb970e0.tar.bz2 |
check if the system date is in a reasonable range (year > 2000) - inform
the user and optionally launch systemtime, if it's not (on iPAQs mostly
because of battery drain)
-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; |