diff options
Diffstat (limited to 'kugar/lib/mreportobject.h')
-rw-r--r-- | kugar/lib/mreportobject.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kugar/lib/mreportobject.h b/kugar/lib/mreportobject.h index ce28cf75..c85ca80a 100644 --- a/kugar/lib/mreportobject.h +++ b/kugar/lib/mreportobject.h @@ -11,10 +11,10 @@ #ifndef MREPORTOBJECT_H #define MREPORTOBJECT_H -#include <qobject.h> -#include <qpainter.h> -#include <qpaintdevice.h> -#include <qcolor.h> +#include <tqobject.h> +#include <tqpainter.h> +#include <tqpaintdevice.h> +#include <tqcolor.h> /**Kugar report object baseclass *@author Mutiny Bay Software @@ -23,7 +23,7 @@ namespace Kugar { -class MReportObject : public QObject +class MReportObject : public TQObject { public: @@ -51,12 +51,12 @@ protected: int height; /** Object's background color */ - QColor backgroundColor; + TQColor backgroundColor; /** Object's foreground color */ - QColor foregroundColor; + TQColor foregroundColor; /** Object's border color */ - QColor borderColor; + TQColor borderColor; /** Object's border width */ int borderWidth; /** Object's border style */ @@ -72,7 +72,7 @@ protected: public: /** Draws the object to the specified painter & x/y offsets */ - virtual void draw( QPainter* p, int xoffset, int yoffset ); + virtual void draw( TQPainter* p, int xoffset, int yoffset ); /** Sets the object's position and size */ void setGeometry( int x, int y, int w, int h ); /** Sets the object's position */ @@ -112,7 +112,7 @@ public: protected: /** Draws the base object to the specified painter & x/y offsets */ - void drawBase( QPainter* p, int xoffset, int yoffset ); + void drawBase( TQPainter* p, int xoffset, int yoffset ); private: /** Copies member data from one object to another. |