diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmtreeviewitem.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmtreeviewitem.h')
-rw-r--r-- | kpovmodeler/pmtreeviewitem.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kpovmodeler/pmtreeviewitem.h b/kpovmodeler/pmtreeviewitem.h index 499e2d16..21cd26c1 100644 --- a/kpovmodeler/pmtreeviewitem.h +++ b/kpovmodeler/pmtreeviewitem.h @@ -24,11 +24,11 @@ #include <config.h> #endif -#include <qlistview.h> +#include <tqlistview.h> class PMObject; /** - * QListViewItem for a @ref PMObject + * TQListViewItem for a @ref PMObject * * Each PMListViewItem is connected to a PMObject. */ @@ -36,25 +36,25 @@ class PMTreeViewItem : public QListViewItem { public: /** - * Constructs a new top-level list view item in the QListView parent. + * Constructs a new top-level list view item in the TQListView parent. */ - PMTreeViewItem( PMObject* object, QListView* parent ); + PMTreeViewItem( PMObject* object, TQListView* parent ); /** * Constructs a new list view item which is a child of parent and * first in the parent's list of children. */ - PMTreeViewItem( PMObject* object, QListViewItem* parent ); + PMTreeViewItem( PMObject* object, TQListViewItem* parent ); /** * Constructs a list view item which is a child of parent * and is after after in the parent's list of children. */ - PMTreeViewItem( PMObject* object, QListView* parent, QListViewItem* after ); + PMTreeViewItem( PMObject* object, TQListView* parent, TQListViewItem* after ); /** * Constructs a list view item which is a child of parent * and is after after in the parent's list of children. */ - PMTreeViewItem( PMObject* object, QListViewItem* parent, - QListViewItem* after ); + PMTreeViewItem( PMObject* object, TQListViewItem* parent, + TQListViewItem* after ); /** * Returns the connected @ref PMObject */ @@ -63,13 +63,13 @@ public: * Returns a key that can be used for sorting, here the index in the * parents list of children */ - virtual QString key( int column, bool ascending ) const; + virtual TQString key( int column, bool ascending ) const; /** * Returns a pointer to the parent item */ PMTreeViewItem* parent( ) { - return ( PMTreeViewItem* ) QListViewItem::parent( ); + return ( PMTreeViewItem* ) TQListViewItem::parent( ); } void setSelected( bool select ); |