diff options
Diffstat (limited to 'kspread/kspread_pen.h')
-rw-r--r-- | kspread/kspread_pen.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kspread/kspread_pen.h b/kspread/kspread_pen.h index 81bc0229..23de5877 100644 --- a/kspread/kspread_pen.h +++ b/kspread/kspread_pen.h @@ -20,19 +20,19 @@ #ifndef KSPREADPEN_H #define KSPREADPEN_H -#include <qpen.h> +#include <tqpen.h> class KoZoomHandler; /** * Pen that handles line widths in points */ -class KSpreadPen : public QPen +class KSpreadPen : public TQPen { public: KSpreadPen(); - KSpreadPen(const QColor& _color, double _pointWidth, Qt::PenStyle _style); - KSpreadPen(const QColor& _color); + KSpreadPen(const TQColor& _color, double _pointWidth, Qt::PenStyle _style); + KSpreadPen(const TQColor& _color); ~KSpreadPen(); /** @@ -58,8 +58,8 @@ class KSpreadPen : public QPen /// KSpreadPen width in points double pointWidth() const { return m_pointWidth; } - /// Returns a zoomed QPen - QPen zoomedPen(KoZoomHandler* zoomHandler); + /// Returns a zoomed TQPen + TQPen zoomedPen(KoZoomHandler* zoomHandler); private: double m_pointWidth; |