summaryrefslogtreecommitdiffstats
path: root/kate/kpybrowser/pybrowse_part.h
diff options
context:
space:
mode:
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