summaryrefslogtreecommitdiffstats
path: root/kate/kpybrowser/pybrowsenode.h
diff options
context:
space:
mode:
Diffstat (limited to 'kate/kpybrowser/pybrowsenode.h')
-rw-r--r--kate/kpybrowser/pybrowsenode.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/kate/kpybrowser/pybrowsenode.h b/kate/kpybrowser/pybrowsenode.h
index d5083f9..d87a81d 100644
--- a/kate/kpybrowser/pybrowsenode.h
+++ b/kate/kpybrowser/pybrowsenode.h
@@ -18,11 +18,11 @@
#ifndef PYBROWSENODE_H
#define PYBROWSENODE_H
-#include <qlistview.h>
-#include <qpixmap.h>
+#include <tqlistview.h>
+#include <tqpixmap.h>
#define PYCLASS 1
-#define PYMETHOD 2
+#define PYQT_METHOD 2
#define PYFUNCTION 3
#define PYVARIABLE 4
#define PYOTHER 5
@@ -33,33 +33,33 @@
-class PyBrowseNode : public QListViewItem {
+class PyBrowseNode : public TQListViewItem {
public:
- QPixmap *pyClassPixmap;
+ TQPixmap *pyClassPixmap;
- PyBrowseNode(QListView *parent, const QString &a_name, const QString &a_signature, int type);
- PyBrowseNode(QListViewItem *parent, const QString &a_name, const QString &a_signature, int type);
+ PyBrowseNode(TQListView *parent, const TQString &a_name, const TQString &a_signature, int type);
+ PyBrowseNode(TQListViewItem *parent, const TQString &a_name, const TQString &a_signature, int type);
~PyBrowseNode();
- void init(const QString &a_name, const QString &a_signature, int nodeType);
+ void init(const TQString &a_name, const TQString &a_signature, int nodeType);
- void setName(const QString &name);
- QString getName()const ;
+ void setName(const TQString &name);
+ TQString getName()const ;
void setLine(int line);
int getLine()const;
- void setSig(const QString &signature);
- QString getSig()const;
+ void setSig(const TQString &signature);
+ TQString getSig()const;
void setType(int type);
int getType()const;
- void setClass(const QString &a_method_class);
- QString getClass()const;
+ void setClass(const TQString &a_method_class);
+ TQString getClass()const;
- QString getQualifiedName()const;
+ TQString getQualifiedName()const;
private:
- QString name;
- QString signature;
- QString node_class;
+ TQString name;
+ TQString signature;
+ TQString node_class;
int line;
int node_type;