summaryrefslogtreecommitdiffstats
path: root/krita/core/kis_vec.h
diff options
context:
space:
mode:
Diffstat (limited to 'krita/core/kis_vec.h')
-rw-r--r--krita/core/kis_vec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/krita/core/kis_vec.h b/krita/core/kis_vec.h
index 1706dd4e6..08b9c5412 100644
--- a/krita/core/kis_vec.h
+++ b/krita/core/kis_vec.h
@@ -23,7 +23,7 @@
#include <math.h>
#include <cfloat>
-#include <qpoint.h>
+#include <tqpoint.h>
#include "kis_point.h"
/*
@@ -36,7 +36,7 @@ class KisVector2D
public:
KisVector2D();
KisVector2D(double x, double y);
- KisVector2D(const QPoint& p);
+ KisVector2D(const TQPoint& p);
KisVector2D(const KisPoint& p);
bool isNull() const;
@@ -88,7 +88,7 @@ inline KisVector2D::KisVector2D()
inline KisVector2D::KisVector2D(double x, double y)
{ m_x=x; m_y=y; }
-inline KisVector2D::KisVector2D(const QPoint& p)
+inline KisVector2D::KisVector2D(const TQPoint& p)
{
m_x=p.x(); m_y=p.y();
}