summaryrefslogtreecommitdiffstats
path: root/kpresenter/KoPointArray.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpresenter/KoPointArray.h')
-rw-r--r--kpresenter/KoPointArray.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kpresenter/KoPointArray.h b/kpresenter/KoPointArray.h
index c78689413..40df02940 100644
--- a/kpresenter/KoPointArray.h
+++ b/kpresenter/KoPointArray.h
@@ -20,18 +20,18 @@
#ifndef KOPOINTARRAY_H
#define KOPOINTARRAY_H
-#include <qmemarray.h>
+#include <tqmemarray.h>
#include <KoPoint.h>
#include <KoRect.h>
class KoZoomHandler;
-class KoPointArray : public QMemArray<KoPoint>
+class KoPointArray : public TQMemArray<KoPoint>
{
public:
KoPointArray() {}
~KoPointArray() {}
- KoPointArray( int size ) : QMemArray<KoPoint>( size ) {}
- KoPointArray( const KoPointArray &a ) : QMemArray<KoPoint>( a ) {}
+ KoPointArray( int size ) : TQMemArray<KoPoint>( size ) {}
+ KoPointArray( const KoPointArray &a ) : TQMemArray<KoPoint>( a ) {}
KoPointArray &operator=( const KoPointArray &a )
{ return (KoPointArray&)assign( a ); }
@@ -51,10 +51,10 @@ public:
KoPointArray cubicBezier() const;
static void cleanBuffers();
- QPointArray zoomPointArray( const KoZoomHandler* zoomHandler ) const;
+ TQPointArray zoomPointArray( const KoZoomHandler* zoomHandler ) const;
// Zoom the point array, taking into account the width of the pen
// (reducing the figure as necessary)
- QPointArray zoomPointArray( const KoZoomHandler* zoomHandler, int penWidth ) const;
+ TQPointArray zoomPointArray( const KoZoomHandler* zoomHandler, int penWidth ) const;
protected:
static uint splen;