summaryrefslogtreecommitdiff
path: root/library
Unidiff
Diffstat (limited to 'library') (more/less context) (ignore whitespace changes)
-rw-r--r--library/tzselect.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/library/tzselect.cpp b/library/tzselect.cpp
index 2e5a433..335037e 100644
--- a/library/tzselect.cpp
+++ b/library/tzselect.cpp
@@ -31,2 +31,4 @@
31#include <qcopchannel_qws.h> 31#include <qcopchannel_qws.h>
32#include <qpe/qpeapplication.h>
33#include <qmessagebox.h>
32 34
@@ -246,4 +248,8 @@ void TimeZoneSelector::slotExecute( void )
246{ 248{
247 // execute the world time application... 249 // execute the world time application...
250 if (QFile::exists(QPEApplication::qpeDir()+"bin/citytime"))
248 Global::execute( "citytime" ); 251 Global::execute( "citytime" );
252 else
253 QMessageBox::warning(this,tr("citytime executable not found"),
254 tr("In order to choose the time zones,\nplease install citytime."));
249} 255}