diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeui/ktimezonewidget.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/ktimezonewidget.h')
-rw-r--r-- | kdeui/ktimezonewidget.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kdeui/ktimezonewidget.h b/kdeui/ktimezonewidget.h index 9241b14a3..a09b1dd56 100644 --- a/kdeui/ktimezonewidget.h +++ b/kdeui/ktimezonewidget.h @@ -22,7 +22,7 @@ #include <kdelibs_export.h> #include <klistview.h> -#include <qstring.h> +#include <tqstring.h> class KTimezone; class KTimezones; @@ -70,7 +70,7 @@ public: * @param db The timezone database to use. If 0, the system timezone * database is used. */ - KTimezoneWidget(QWidget *parent = 0, const char *name = 0, KTimezones *db = 0); + KTimezoneWidget(TQWidget *parent = 0, const char *name = 0, KTimezones *db = 0); /** * Destroys the timezone selection widget. @@ -78,12 +78,12 @@ public: virtual ~KTimezoneWidget(); /** - * Returns the currently selected timezones. See QListView::selectionChanged(). + * Returns the currently selected timezones. See TQListView::selectionChanged(). * * @return a list of timezone names, in the format used by the database * supplied to the {@link KTimezoneWidget() } constructor. */ - QStringList selection() const; + TQStringList selection() const; /** * Select/deselect the named timezone. @@ -91,7 +91,7 @@ public: * @param zone The timezone name to be selected. Ignored if not recognised! * @param selected The new selection state. */ - void setSelected(const QString &zone, bool selected); + void setSelected(const TQString &zone, bool selected); /** * Format a timezone name in a standardised manner. The returned value is @@ -103,7 +103,7 @@ public: * * @return formatted timezone name. */ - static QString displayName(const KTimezone *zone); + static TQString displayName(const KTimezone *zone); private: KTimezoneWidgetPrivate *d; |