summaryrefslogtreecommitdiffstats
path: root/parts/tools/toolsconfig.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
commitd6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch)
treed109539636691d7b03036ca1c0ed29dbae6577cf /parts/tools/toolsconfig.h
parent3331a47a9cad24795c7440ee8107143ce444ef34 (diff)
downloadtdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz
tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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;
};