summaryrefslogtreecommitdiffstats
path: root/kate/kpybrowser/kpybrowser.h
diff options
context:
space:
mode:
Diffstat (limited to 'kate/kpybrowser/kpybrowser.h')
-rw-r--r--kate/kpybrowser/kpybrowser.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kate/kpybrowser/kpybrowser.h b/kate/kpybrowser/kpybrowser.h
index ae49d3c..5f73c31 100644
--- a/kate/kpybrowser/kpybrowser.h
+++ b/kate/kpybrowser/kpybrowser.h
@@ -24,10 +24,10 @@
#include <kapplication.h>
#include <klistview.h>
-#include <qstring.h>
-#include <qvaluelist.h>
-#include <qtooltip.h>
-#include <qdict.h>
+#include <tqstring.h>
+#include <tqvaluelist.h>
+#include <tqtooltip.h>
+#include <tqdict.h>
#include "pybrowsenode.h"
@@ -37,31 +37,31 @@ class KPyBrowser : public KListView
Q_OBJECT
public:
/** construtor */
- KPyBrowser(QWidget* parent=0, const char *name=0);
+ KPyBrowser(TQWidget* parent=0, const char *name=0);
/** destructor */
~KPyBrowser();
- void parseText(QString &pytext);
+ void parseText(TQString &pytext);
//used by KPBToolTip to dynamically create the needed tooltip
- void tip (const QPoint &p, QRect &r, QString &str);
+ void tip (const TQPoint &p, TQRect &r, TQString &str);
private:
PyBrowseNode *class_root, *function_root;
//create a mapping of names to nodes
- QDict<PyBrowseNode> node_dict;
+ TQDict<PyBrowseNode> node_dict;
public slots:
- void nodeSelected(QListViewItem *node);
+ void nodeSelected(TQListViewItem *node);
signals:
- void selected(QString, int);
+ void selected(TQString, int);
private:
class KPBToolTip : public QToolTip
{
public:
- KPBToolTip(QWidget *parent);
+ KPBToolTip(TQWidget *parent);
protected:
- void maybeTip( const QPoint & );
+ void maybeTip( const TQPoint & );
};
KPBToolTip* tooltip;
};