diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /karbon/core/vselection.h | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karbon/core/vselection.h')
-rw-r--r-- | karbon/core/vselection.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/karbon/core/vselection.h b/karbon/core/vselection.h index 31dbb266..c98e5bf1 100644 --- a/karbon/core/vselection.h +++ b/karbon/core/vselection.h @@ -22,7 +22,7 @@ #define __VSELECTION_H__ -#include <qptrlist.h> +#include <tqptrlist.h> #include <KoRect.h> @@ -30,13 +30,13 @@ #include "vvisitor.h" #include <koffice_export.h> class KoPoint; -class QObject; +class TQObject; class VPainter; class VVisitor; class VSegment; -typedef QPtrList<VObject> VObjectList; -typedef QPtrListIterator<VObject> VObjectListIterator; +typedef TQPtrList<VObject> VObjectList; +typedef TQPtrListIterator<VObject> VObjectListIterator; /// Ids of manipulation nodes. @@ -62,11 +62,11 @@ class KARBONBASE_EXPORT VSelection : public VObject, public VVisitor { public: /** - * Constructs a vselection with the specified parent. + * Constructs a vselection with the specified tqparent. * - * @param parent the selection's parent + * @param tqparent the selection's tqparent */ - VSelection( VObject* parent = 0L ); + VSelection( VObject* tqparent = 0L ); /** * Constructs a vselection by copying the specified selection. @@ -141,7 +141,7 @@ public: * @param rect the selection rect * @return the list of segments */ - QPtrList<VSegment> getSegments( const KoRect& rect ); + TQPtrList<VSegment> getSegments( const KoRect& rect ); /** * Selects or deselects all nodes. |