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 /kresources/selectdialog.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 'kresources/selectdialog.h')
-rw-r--r-- | kresources/selectdialog.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kresources/selectdialog.h b/kresources/selectdialog.h index 5ec90fc58..26905e47b 100644 --- a/kresources/selectdialog.h +++ b/kresources/selectdialog.h @@ -24,9 +24,9 @@ #ifndef KRESOURCES_SELECTDIALOG_H #define KRESOURCES_SELECTDIALOG_H -#include <qobject.h> -#include <qptrlist.h> -#include <qmap.h> +#include <tqobject.h> +#include <tqptrlist.h> +#include <tqmap.h> #include <kdialog.h> @@ -43,7 +43,7 @@ class Resource; * * \code * - * QPtrList<Resource> list = ... // can be retrived from KRES::Manager (e.g. KABC::AddressBook) + * TQPtrList<Resource> list = ... // can be retrived from KRES::Manager (e.g. KABC::AddressBook) * * KABC::Resource *res = KABC::SelectDialog::getResource( list, parentWdg ); * if ( !res ) { @@ -62,7 +62,7 @@ class KRESOURCES_EXPORT SelectDialog : KDialog * @param parent The parent widget * @param name The name of the dialog */ - SelectDialog( QPtrList<Resource> list, QWidget *parent = 0, + SelectDialog( TQPtrList<Resource> list, TQWidget *parent = 0, const char *name = 0); /** @@ -74,12 +74,12 @@ class KRESOURCES_EXPORT SelectDialog : KDialog * Opens a dialog showing the available resources and returns the resource the * user has selected. Returns 0, if the dialog was canceled. */ - static Resource *getResource( QPtrList<Resource> list, QWidget *parent = 0 ); + static Resource *getResource( TQPtrList<Resource> list, TQWidget *parent = 0 ); private: KListBox *mResourceId; - QMap<int, Resource*> mResourceMap; + TQMap<int, Resource*> mResourceMap; }; } |