From c663b6440964f6ac48027143ac9e63298991f9d0 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:33:34 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kicker/applets/clock/zone.cpp | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'kicker/applets/clock/zone.cpp') diff --git a/kicker/applets/clock/zone.cpp b/kicker/applets/clock/zone.cpp index 1d952a765..320d84b4c 100644 --- a/kicker/applets/clock/zone.cpp +++ b/kicker/applets/clock/zone.cpp @@ -34,8 +34,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include #include -#include -#include +#include +#include #include #include @@ -51,8 +51,8 @@ Zone::Zone(KConfig* conf): config->setGroup("General"); /* default displayable timezones */ - QString tzList = config->readEntry("RemoteZones"); - _remotezonelist = QStringList::split(",", tzList); + TQString tzList = config->readEntry("RemoteZones"); + _remotezonelist = TQStringList::split(",", tzList); setZone(config->readNumEntry("Initial_TZ", 0)); } @@ -69,12 +69,12 @@ void Zone::setZone(int z) _zoneIndex = z; } -QString Zone::zone(int z) const +TQString Zone::zone(int z) const { return (z == 0 ? _defaultTZ : _remotezonelist[z-1]); } -int Zone::calc_TZ_offset(const QString& zone, bool /* reset */) +int Zone::calc_TZ_offset(const TQString& zone, bool /* reset */) { const KTimezone *z = zone.isEmpty() ? m_zoneDb.local() : m_zoneDb.zone(zone); @@ -94,26 +94,26 @@ int Zone::calc_TZ_offset(const QString& zone, bool /* reset */) void Zone::readZoneList(KListView *listView ) { const KTimezones::ZoneMap zones = m_zoneDb.allZones(); - QMap KontinentMap; + TQMap KontinentMap; listView->setRootIsDecorated(true); for (KTimezones::ZoneMap::ConstIterator it = zones.begin(); it != zones.end(); ++it) { const KTimezone *zone = it.data(); - QString tzName = zone->name(); - QString comment = zone->comment(); + TQString tzName = zone->name(); + TQString comment = zone->comment(); if (!comment.isEmpty()) comment = i18n(comment.utf8()); - const QStringList KontCity = QStringList::split("/", i18n(tzName.utf8()).replace("_", " ")); - QListViewItem* Kontinent = KontinentMap[KontCity[0]]; + const TQStringList KontCity = TQStringList::split("/", i18n(tzName.utf8()).replace("_", " ")); + TQListViewItem* Kontinent = KontinentMap[KontCity[0]]; if (!Kontinent) { - KontinentMap[KontCity[0]] = new QListViewItem(listView, KontCity[0]); + KontinentMap[KontCity[0]] = new TQListViewItem(listView, KontCity[0]); Kontinent = KontinentMap[KontCity[0]]; Kontinent->setExpandable(true); } - QCheckListItem *li = new QCheckListItem(Kontinent, KontCity[1], QCheckListItem::CheckBox); + TQCheckListItem *li = new TQCheckListItem(Kontinent, KontCity[1], TQCheckListItem::CheckBox); li->setText(1, comment); li->setText(2, tzName); /* store complete path in ListView */ @@ -122,11 +122,11 @@ void Zone::readZoneList(KListView *listView ) // locate the flag from /l10n/%1/flag.png // if not available select default "C" flag - QString flag = locate( "locale", QString("l10n/%1/flag.png").arg(zone->countryCode().lower()) ); - if (!QFile::exists(flag)) + TQString flag = locate( "locale", TQString("l10n/%1/flag.png").arg(zone->countryCode().lower()) ); + if (!TQFile::exists(flag)) flag = locate( "locale", "l10n/C/flag.png" ); - if (QFile::exists(flag)) - li->setPixmap(0, QPixmap(flag)); + if (TQFile::exists(flag)) + li->setPixmap(0, TQPixmap(flag)); } } @@ -135,14 +135,14 @@ void Zone::getSelectedZonelist(KListView *listView) _remotezonelist.clear(); /* loop through all entries */ - QListViewItem *root = listView->firstChild(); + TQListViewItem *root = listView->firstChild(); while (root) { if (root->firstChild()) { root = root->firstChild(); continue; } - QCheckListItem *cl = (QCheckListItem*) root; + TQCheckListItem *cl = (TQCheckListItem*) root; if (cl->isOn()) { _remotezonelist.append(cl->text(2)); } -- cgit v1.2.3