diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kicker/applets/clock/zone.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kicker/applets/clock/zone.h')
-rw-r--r-- | kicker/applets/clock/zone.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kicker/applets/clock/zone.h b/kicker/applets/clock/zone.h index 34371c6ae..db34188bd 100644 --- a/kicker/applets/clock/zone.h +++ b/kicker/applets/clock/zone.h @@ -25,7 +25,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #define __ZONE_H #include <ktimezones.h> -#include <qstringlist.h> +#include <tqstringlist.h> class KConfig; class KListView; @@ -38,24 +38,24 @@ public: void writeSettings(); - QString zone() const { return zone(_zoneIndex); }; - QString zone(int z) const; - QStringList remoteZoneList() const { return _remotezonelist; }; + TQString zone() const { return zone(_zoneIndex); }; + TQString zone(int z) const; + TQStringList remoteZoneList() const { return _remotezonelist; }; int remoteZoneCount() { return _remotezonelist.count(); }; unsigned int zoneIndex() const { return _zoneIndex; } void setZone(int z = 0); void nextZone(); void prevZone(); - int calc_TZ_offset(const QString& zone, bool reset=false); + int calc_TZ_offset(const TQString& zone, bool reset=false); void readZoneList(KListView *listView); void getSelectedZonelist(KListView *listView); protected: KTimezones m_zoneDb; - QStringList _remotezonelist; + TQStringList _remotezonelist; KConfig *config; - QString _defaultTZ; + TQString _defaultTZ; unsigned int _zoneIndex; }; |