diff options
Diffstat (limited to 'krita/core/kis_boundary.h')
-rw-r--r-- | krita/core/kis_boundary.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/krita/core/kis_boundary.h b/krita/core/kis_boundary.h index 069d02899..6c5ce8c6e 100644 --- a/krita/core/kis_boundary.h +++ b/krita/core/kis_boundary.h @@ -18,8 +18,8 @@ #ifndef _KIS_BOUNDARY_H_ #define _KIS_BOUNDARY_H_ -#include <qvaluelist.h> -#include <qpair.h> +#include <tqvaluelist.h> +#include <tqpair.h> #include <koffice_export.h> #include "kis_point.h" @@ -40,13 +40,13 @@ public: void generateBoundary(int w, int h); private: - typedef QPair<KisPoint, int> PointPair; // int->length - bool isDark(Q_UINT8 val); + typedef TQPair<KisPoint, int> PointPair; // int->length + bool isDark(TQ_UINT8 val); KisPaintDevice* m_device; int m_fuzzyness; - typedef QValueList<PointPair> PointPairList; - typedef QValueList< PointPairList > PointPairListList; + typedef TQValueList<PointPair> PointPairList; + typedef TQValueList< PointPairList > PointPairListList; PointPairListList m_horSegments; PointPairListList m_vertSegments; |