summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/nexscope/gui.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:22:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:22:56 +0000
commit7346aee26bf190a7e70333c40fab4caca847cd27 (patch)
tree4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /noatun-plugins/nexscope/gui.h
parent23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff)
downloadtdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.tar.gz
tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun-plugins/nexscope/gui.h')
-rw-r--r--noatun-plugins/nexscope/gui.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/noatun-plugins/nexscope/gui.h b/noatun-plugins/nexscope/gui.h
index 84fd2bf..3fea2ae 100644
--- a/noatun-plugins/nexscope/gui.h
+++ b/noatun-plugins/nexscope/gui.h
@@ -3,8 +3,8 @@
#include <kmainwindow.h>
#include <klistview.h>
-#include <qsplitter.h>
-#include <qdict.h>
+#include <tqsplitter.h>
+#include <tqdict.h>
#include <dcopobject.h>
#include <kurl.h>
@@ -17,7 +17,7 @@ Q_OBJECT
public:
Control();
- void addCreator(const QString &title);
+ void addCreator(const TQString &title);
public slots:
void save(const KURL &file);
@@ -28,13 +28,13 @@ public slots:
void open(const KURL &file);
protected slots:
- void dropEvent(QDropEvent *e, QListViewItem *parent, QListViewItem *pafter);
- void currentChanged(QListViewItem *item);
+ void dropEvent(TQDropEvent *e, TQListViewItem *parent, TQListViewItem *pafter);
+ void currentChanged(TQListViewItem *item);
private:
- QWidget *mRight;
+ TQWidget *mRight;
KListView *mTree, *mCreatorsList;
- QWidget *mConfigurator;
+ TQWidget *mConfigurator;
KURL mCurrentURL;
};
@@ -43,11 +43,11 @@ class RendererListView : public KListView
{
Q_OBJECT
public:
- RendererListView(QWidget *p);
+ RendererListView(TQWidget *p);
protected:
- virtual bool acceptDrag(QDropEvent *event) const;
- virtual QDragObject *dragObject() const;
+ virtual bool acceptDrag(TQDropEvent *event) const;
+ virtual TQDragObject *dragObject() const;
};