diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
commit | 7346aee26bf190a7e70333c40fab4caca847cd27 (patch) | |
tree | 4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /kate/kpybrowser/pybrowsenode.h | |
parent | 23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff) | |
download | tdeaddons-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/pybrowsenode.h')
-rw-r--r-- | kate/kpybrowser/pybrowsenode.h | 36 |
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; |