diff options
Diffstat (limited to 'korganizer/plugins/timespanview/lineview.h')
-rw-r--r-- | korganizer/plugins/timespanview/lineview.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/korganizer/plugins/timespanview/lineview.h b/korganizer/plugins/timespanview/lineview.h index 0bb1788a7..e98d905b0 100644 --- a/korganizer/plugins/timespanview/lineview.h +++ b/korganizer/plugins/timespanview/lineview.h @@ -24,14 +24,14 @@ #ifndef LINEVIEW_H #define LINEVIEW_H -#include <qscrollview.h> -#include <qptrlist.h> +#include <tqscrollview.h> +#include <tqptrlist.h> class LineView : public QScrollView { Q_OBJECT public: - LineView( QWidget *parent = 0, const char *name = 0 ); + LineView( TQWidget *parent = 0, const char *name = 0 ); virtual ~LineView(); int pixelWidth(); @@ -41,7 +41,7 @@ class LineView : public QScrollView void clear(); protected: - void drawContents(QPainter* p, int cx, int cy, int cw, int ch); + void drawContents(TQPainter* p, int cx, int cy, int cw, int ch); private: struct Line { @@ -51,7 +51,7 @@ class LineView : public QScrollView int end; }; - QPtrList<Line> mLines; + TQPtrList<Line> mLines; int mPixelWidth; }; |