diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-30 18:02:11 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-30 18:02:11 +0000 |
commit | 5ad8fdbf162cf819cf1c48d2ddd8aed9113ab718 (patch) | |
tree | a2f76da0912085453b974e590005753ca279457b /systemsettings/moduleiconitem.h | |
parent | 70a90e54dfa3b5ab2133aebda71f310d29d6a680 (diff) | |
download | tde-systemsettings-5ad8fdbf162cf819cf1c48d2ddd8aed9113ab718.tar.gz tde-systemsettings-5ad8fdbf162cf819cf1c48d2ddd8aed9113ab718.zip |
TQt4 convert kde-systemsettings
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-systemsettings@1234247 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'systemsettings/moduleiconitem.h')
-rw-r--r-- | systemsettings/moduleiconitem.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/systemsettings/moduleiconitem.h b/systemsettings/moduleiconitem.h index 48ff12c..c5ebcb4 100644 --- a/systemsettings/moduleiconitem.h +++ b/systemsettings/moduleiconitem.h @@ -31,14 +31,14 @@ class ConfigModule; * Stores information about what modules goes with this item. * Also provides means of loading the enabled/disabled image (see kcmsearch). */ -class ModuleIconItem : public QIconViewItem +class ModuleIconItem : public TQIconViewItem { public: - ModuleIconItem( KIconView *parent, KCModuleInfo module ); + ModuleIconItem( KIconView *tqparent, KCModuleInfo module ); - ModuleIconItem( KIconView *parent, const QString &text, - const QString &imageName ); + ModuleIconItem( KIconView *tqparent, const TQString &text, + const TQString &imageName ); /** * Update the icon to either be enabled or not. @@ -46,11 +46,11 @@ public: void loadIcon( bool enabled = true ); // The modules that go with this item - QValueList<KCModuleInfo> modules; + TQValueList<KCModuleInfo> modules; private: int currentState; - QString imageName; + TQString imageName; }; #endif // MODULEICONITEM_H |