summaryrefslogtreecommitdiffstats
path: root/kcontrol/icons/iconthemes.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kcontrol/icons/iconthemes.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcontrol/icons/iconthemes.h')
-rw-r--r--kcontrol/icons/iconthemes.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kcontrol/icons/iconthemes.h b/kcontrol/icons/iconthemes.h
index d6d1a9e91..622cedb19 100644
--- a/kcontrol/icons/iconthemes.h
+++ b/kcontrol/icons/iconthemes.h
@@ -20,7 +20,7 @@
#define ICONTHEMES_H
#include <kcmodule.h>
-#include <qmap.h>
+#include <tqmap.h>
#include <klistview.h>
class QPushButton;
@@ -34,12 +34,12 @@ class IconThemesConfig : public KCModule
Q_OBJECT
public:
- IconThemesConfig(QWidget *parent = 0L, const char *name = 0L);
+ IconThemesConfig(TQWidget *parent = 0L, const char *name = 0L);
virtual ~IconThemesConfig();
void loadThemes();
- bool installThemes(const QStringList &themes, const QString &archiveName);
- QStringList findThemeDirs(const QString &archiveName);
+ bool installThemes(const TQStringList &themes, const TQString &archiveName);
+ TQStringList findThemeDirs(const TQString &archiveName);
void updateRemoveButton();
@@ -50,21 +50,21 @@ public:
int buttons();
protected slots:
- void themeSelected(QListViewItem *item);
+ void themeSelected(TQListViewItem *item);
void installNewTheme();
void removeSelectedTheme();
private:
- QListViewItem *iconThemeItem(const QString &name);
+ TQListViewItem *iconThemeItem(const TQString &name);
KListView *m_iconThemes;
- QPushButton *m_removeButton;
+ TQPushButton *m_removeButton;
- QLabel *m_previewExec;
- QLabel *m_previewFolder;
- QLabel *m_previewDocument;
- QListViewItem *m_defaultTheme;
- QMap <QString, QString>m_themeNames;
+ TQLabel *m_previewExec;
+ TQLabel *m_previewFolder;
+ TQLabel *m_previewDocument;
+ TQListViewItem *m_defaultTheme;
+ TQMap <TQString, TQString>m_themeNames;
bool m_bChanged;
};