summaryrefslogtreecommitdiffstats
path: root/kate/kpybrowser/pybrowse_part.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 /kate/kpybrowser/pybrowse_part.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 'kate/kpybrowser/pybrowse_part.h')
-rw-r--r--kate/kpybrowser/pybrowse_part.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kate/kpybrowser/pybrowse_part.h b/kate/kpybrowser/pybrowse_part.h
index 85aedbb..3769661 100644
--- a/kate/kpybrowser/pybrowse_part.h
+++ b/kate/kpybrowser/pybrowse_part.h
@@ -30,10 +30,10 @@
#include <kdockwidget.h>
#include <klibloader.h>
#include <klocale.h>
-#include <qstring.h>
+#include <tqstring.h>
#include "kpybrowser.h"
-class PluginViewPyBrowse : public QObject, KXMLGUIClient
+class PluginViewPyBrowse : public TQObject, KXMLGUIClient
{
Q_OBJECT
@@ -45,12 +45,12 @@ class PluginViewPyBrowse : public QObject, KXMLGUIClient
public slots:
void slotShowPyBrowser();
- void slotSelected(QString name, int line);
+ void slotSelected(TQString name, int line);
void slotUpdatePyBrowser();
private:
Kate::MainWindow *win;
- QWidget *my_dock;
+ TQWidget *my_dock;
KPyBrowser *kpybrowser;
};
@@ -59,14 +59,14 @@ class KatePluginPyBrowse : public Kate::Plugin, public Kate::PluginViewInterface
Q_OBJECT
public:
- KatePluginPyBrowse( QObject* parent = 0, const char* name = 0, const QStringList& = QStringList() );
+ KatePluginPyBrowse( TQObject* parent = 0, const char* name = 0, const TQStringList& = TQStringList() );
~KatePluginPyBrowse();
void addView(Kate::MainWindow *win);
void removeView(Kate::MainWindow *win);
private:
- QPtrList<PluginViewPyBrowse> m_views;
+ TQPtrList<PluginViewPyBrowse> m_views;
};
#endif