diff -r 9eb7767c2dfa -r 608f976aa7bb headingobj.h --- a/headingobj.h Sun Jan 30 12:58:47 2005 +0000 +++ b/headingobj.h Tue Jun 06 14:58:11 2006 +0000 @@ -2,11 +2,13 @@ #define HEADINGOBJ_H #include "mapobj.h" +//Added by qt3to4: +#include class HeadingObj:public MapObj { public: HeadingObj(); - HeadingObj(QCanvas*); + HeadingObj(Q3Canvas*); virtual ~HeadingObj(); virtual void init(); virtual void copy(HeadingObj*); @@ -15,7 +17,7 @@ virtual void positionBBox(); virtual void calcBBoxSize(); private: - QCanvasText* newLine(QString); // generate new textline + Q3CanvasText* newLine(QString); // generate new textline public: virtual void setText(QString); virtual QString text(); @@ -30,7 +32,7 @@ protected: QString heading; uint textwidth; // width for formatting text - QPtrList textline; // a part of e.g. the parabel + Q3PtrList textline; // a part of e.g. the parabel QColor color; QFont font; };