summaryrefslogtreecommitdiff
path: root/core/settings/citytime
authormickeyl <mickeyl>2003-11-06 10:17:45 (UTC)
committer mickeyl <mickeyl>2003-11-06 10:17:45 (UTC)
commit55ea6367fba8a82fbdca74599422717e4b3c3ec6 (patch) (unidiff)
treeb40bb13a1b4f05b4eda61cf0c4a02e32719a70c4 /core/settings/citytime
parent56ad1eb7fb39ddc78026a0df096703fcf42f5a94 (diff)
downloadopie-55ea6367fba8a82fbdca74599422717e4b3c3ec6.zip
opie-55ea6367fba8a82fbdca74599422717e4b3c3ec6.tar.gz
opie-55ea6367fba8a82fbdca74599422717e4b3c3ec6.tar.bz2
merge core/settings/*
- light-and-power and security were a bit ugly, so I recommend someone who actually dealt with these files looking into if I got it right (not to tell about the frustratation about the fact that the ones who dealt with these files didn't do the merge in the first place :(
Diffstat (limited to 'core/settings/citytime') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/citytime/citytime.h2
-rw-r--r--core/settings/citytime/citytime.pro8
-rw-r--r--core/settings/citytime/main.cpp9
3 files changed, 6 insertions, 13 deletions
diff --git a/core/settings/citytime/citytime.h b/core/settings/citytime/citytime.h
index 63e3102..cc3d487 100644
--- a/core/settings/citytime/citytime.h
+++ b/core/settings/citytime/citytime.h
@@ -33,13 +33,13 @@ class ZoneMap;
33class CityTime : public CityTimeBase 33class CityTime : public CityTimeBase
34{ 34{
35 Q_OBJECT 35 Q_OBJECT
36public: 36public:
37 CityTime(QWidget* parent = 0, const char *name = 0, WFlags fl = 0); 37 CityTime(QWidget* parent = 0, const char *name = 0, WFlags fl = 0);
38 ~CityTime(); 38 ~CityTime();
39 39 static QString appName() { return QString::fromLatin1("citytime"); }
40public slots: 40public slots:
41 void beginNewTz(); 41 void beginNewTz();
42 void slotNewTz( const QString& strNewCountry, const QString& strNewCity ); 42 void slotNewTz( const QString& strNewCountry, const QString& strNewCity );
43 void changeClock( bool newClock ); 43 void changeClock( bool newClock );
44 44
45protected: 45protected:
diff --git a/core/settings/citytime/citytime.pro b/core/settings/citytime/citytime.pro
index c7f4d08..402bcf6 100644
--- a/core/settings/citytime/citytime.pro
+++ b/core/settings/citytime/citytime.pro
@@ -1,17 +1,15 @@
1CONFIG += qt warn_on release 1CONFIG += qt warn_on release quick-app
2TEMPLATE = app
3DESTDIR = $(OPIEDIR)/bin
4#INTERFACES = citytimebase.ui
5HEADERS = citytime.h citytimebase.h zonemap.h sun.h stylusnormalizer.h 2HEADERS = citytime.h citytimebase.h zonemap.h sun.h stylusnormalizer.h
6SOURCES = citytime.cpp citytimebase.cpp zonemap.cpp main.cpp sun.c stylusnormalizer.cpp 3SOURCES = citytime.cpp citytimebase.cpp zonemap.cpp main.cpp sun.c stylusnormalizer.cpp
7TARGET = citytime
8INCLUDEPATH += $(OPIEDIR)/include 4INCLUDEPATH += $(OPIEDIR)/include
9DEPENDPATH += $(OPIEDIR)/include 5DEPENDPATH += $(OPIEDIR)/include
10LIBS += -lqpe 6LIBS += -lqpe
11 7
8 TARGET= citytime
9
12TRANSLATIONS = ../../../i18n/de/citytime.ts \ 10TRANSLATIONS = ../../../i18n/de/citytime.ts \
13 ../../../i18n/nl/citytime.ts \ 11 ../../../i18n/nl/citytime.ts \
14 ../../../i18n/xx/citytime.ts \ 12 ../../../i18n/xx/citytime.ts \
15 ../../../i18n/en/citytime.ts \ 13 ../../../i18n/en/citytime.ts \
16 ../../../i18n/es/citytime.ts \ 14 ../../../i18n/es/citytime.ts \
17 ../../../i18n/fr/citytime.ts \ 15 ../../../i18n/fr/citytime.ts \
diff --git a/core/settings/citytime/main.cpp b/core/settings/citytime/main.cpp
index e8664c6..69bfe44 100644
--- a/core/settings/citytime/main.cpp
+++ b/core/settings/citytime/main.cpp
@@ -17,14 +17,9 @@
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include "citytime.h" 21#include "citytime.h"
22#include <qpe/qpeapplication.h> 22#include <qpe/qpeapplication.h>
23#include <opie/oapplicationfactory.h>
23 24
24int main( int argc, char** argv ) 25OPIE_EXPORT_APP( OApplicationFactory<CityTime> )
25{
26 QPEApplication a( argc, argv );
27 CityTime main;
28 a.showMainWidget( &main );
29 return a.exec();
30}