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 /knewstuff/knewstuffbutton.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 'knewstuff/knewstuffbutton.h')
-rw-r--r-- | knewstuff/knewstuffbutton.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/knewstuff/knewstuffbutton.h b/knewstuff/knewstuffbutton.h index bcc090cd4..6935ba653 100644 --- a/knewstuff/knewstuffbutton.h +++ b/knewstuff/knewstuffbutton.h @@ -53,10 +53,10 @@ class Button : public KPushButton * @param parent the parent widget * @param name the name to be used for this widget */ - Button(const QString& what, - const QString& providerList, - const QString& resourceType, - QWidget* parent, const char* name); + Button(const TQString& what, + const TQString& providerList, + const TQString& resourceType, + TQWidget* parent, const char* name); /** * Constructor used when the details of the KHotNewStuff @@ -65,24 +65,24 @@ class Button : public KPushButton * @param parent the parent widget * @param name the name to be used for this widget */ - Button(QWidget* parent, const char* name); + Button(TQWidget* parent, const char* name); /** * set the URL to the list of providers for this button to use */ - void setProviderList(const QString& providerList); + void setProviderList(const TQString& providerList); /** * the Hotstuff data type for this downlaod such as * "korganizer/calendar" */ - void setResourceType(const QString& resourceType); + void setResourceType(const TQString& resourceType); /** * set the text that should appear on the button. will be prefaced * with i18n("Download New") */ - void setButtonText(const QString& what); + void setButtonText(const TQString& what); signals: /** @@ -105,8 +105,8 @@ class Button : public KPushButton class ButtonPrivate; ButtonPrivate* d; - QString m_providerList; - QString m_type; + TQString m_providerList; + TQString m_type; DownloadDialog* m_downloadDialog; }; |