summaryrefslogtreecommitdiffstats
path: root/parts/tools/toolsconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'parts/tools/toolsconfig.h')
-rw-r--r--parts/tools/toolsconfig.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/parts/tools/toolsconfig.h b/parts/tools/toolsconfig.h
index 5dc87d70..46855256 100644
--- a/parts/tools/toolsconfig.h
+++ b/parts/tools/toolsconfig.h
@@ -2,9 +2,9 @@
#define __TOOLS_CONFIG_H__
-#include <qwidget.h>
-#include <qptrlist.h>
-#include <qpixmap.h>
+#include <tqwidget.h>
+#include <tqptrlist.h>
+#include <tqpixmap.h>
class QListBox;
@@ -17,9 +17,9 @@ public:
Entry() {};
- QString name;
- QString desktopFile;
- QPixmap icon;
+ TQString name;
+ TQString desktopFile;
+ TQPixmap icon;
};
@@ -30,7 +30,7 @@ class ToolsConfig : public QWidget
public:
- ToolsConfig(QWidget *parent = 0, const char *name = 0);
+ ToolsConfig(TQWidget *parent = 0, const char *name = 0);
public slots:
@@ -40,11 +40,11 @@ public slots:
protected:
- void showEvent(QShowEvent *);
+ void showEvent(TQShowEvent *);
void fill();
- void add(const QString &desktopFile);
- void remove(const QString &desktopFile);
+ void add(const TQString &desktopFile);
+ void remove(const TQString &desktopFile);
private slots:
@@ -60,10 +60,10 @@ private slots:
private:
KDevApplicationTree *_tree;
- QListBox *_list;
- QPushButton *_toList, *_toTree;
+ TQListBox *_list;
+ TQPushButton *_toList, *_toTree;
- QPtrList<Entry> _entries;
+ TQPtrList<Entry> _entries;
};