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 /kdecore/kiconloader_p.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 'kdecore/kiconloader_p.h')
-rw-r--r-- | kdecore/kiconloader_p.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kdecore/kiconloader_p.h b/kdecore/kiconloader_p.h index a3201137b..41083b38c 100644 --- a/kdecore/kiconloader_p.h +++ b/kdecore/kiconloader_p.h @@ -12,12 +12,12 @@ #ifndef __KIconLoader_p_h_Included__ #define __KIconLoader_p_h_Included__ -#include <qobject.h> -#include <qstringlist.h> +#include <tqobject.h> +#include <tqstringlist.h> #include <kicontheme.h> #include <kiconloader.h> #include <kiconeffect.h> -#include <qdict.h> +#include <tqdict.h> class KIconThemeNode { @@ -25,10 +25,10 @@ public: KIconThemeNode(KIconTheme *_theme); ~KIconThemeNode(); - void queryIcons(QStringList *lst, int size, KIcon::Context context) const; - void queryIconsByContext(QStringList *lst, int size, KIcon::Context context) const; - KIcon findIcon(const QString& name, int size, KIcon::MatchType match) const; - void printTree(QString& dbgString) const; + void queryIcons(TQStringList *lst, int size, KIcon::Context context) const; + void queryIconsByContext(TQStringList *lst, int size, KIcon::Context context) const; + KIcon findIcon(const TQString& name, int size, KIcon::MatchType match) const; + void printTree(TQString& dbgString) const; KIconTheme *theme; }; @@ -37,19 +37,19 @@ class KIconLoaderPrivate : public QObject { Q_OBJECT public: - QStringList mThemesInTree; + TQStringList mThemesInTree; KIconGroup *mpGroups; KIconThemeNode *mpThemeRoot; KStandardDirs *mpDirs; KIconLoader *q; KIconEffect mpEffect; - QDict<QImage> imgDict; - QImage lastImage; // last loaded image without effect applied - QString lastImageKey; // key for icon without effect - QString appname; + TQDict<TQImage> imgDict; + TQImage lastImage; // last loaded image without effect applied + TQString lastImageKey; // key for icon without effect + TQString appname; int lastIconType; // see KIcon::type int lastIconThreshold; // see KIcon::threshold - QPtrList<KIconThemeNode> links; + TQPtrList<KIconThemeNode> links; bool extraDesktopIconsLoaded; bool delayedLoading; |