diff options
Diffstat (limited to 'lib/kofficeui/KoBrush.h')
-rw-r--r-- | lib/kofficeui/KoBrush.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/kofficeui/KoBrush.h b/lib/kofficeui/KoBrush.h index 142dbb92..1134b05e 100644 --- a/lib/kofficeui/KoBrush.h +++ b/lib/kofficeui/KoBrush.h @@ -21,12 +21,12 @@ #ifndef KOBRUSH_H #define KOBRUSH_H -#include <qbrush.h> +#include <tqbrush.h> class KoGenStyle; class KoGenStyles; class KoOasisContext; -class QDomElement; +class TQDomElement; enum BCType { @@ -51,17 +51,17 @@ class KoBrush { public: KoBrush(); - KoBrush( const QBrush &brush, const QColor &gColor1, const QColor &gColor2, + KoBrush( const TQBrush &brush, const TQColor &gColor1, const TQColor &gColor2, BCType gType, FillType fillType, bool unbalanced, int xfactor, int yfactor ); KoBrush &operator=( const KoBrush &brush ); - void setBrush( const QBrush &brush ) + void setBrush( const TQBrush &brush ) { m_brush = brush; } - void setGColor1( const QColor &gColor1 ) + void setGColor1( const TQColor &gColor1 ) { m_gColor1 = gColor1; } - void setGColor2( const QColor &gColor2 ) + void setGColor2( const TQColor &gColor2 ) { m_gColor2 = gColor2; } void setGType( BCType gType ) { m_gType = gType; } @@ -74,11 +74,11 @@ public: void setGYFactor( int yfactor ) { m_yfactor = yfactor; } - QBrush getBrush() const + TQBrush getBrush() const { return m_brush; } - QColor getGColor1() const + TQColor getGColor1() const { return m_gColor1; } - QColor getGColor2() const + TQColor getGColor2() const { return m_gColor2; } BCType getGType() const { return m_gType; } @@ -92,9 +92,9 @@ public: { return m_yfactor; } private: - QBrush m_brush; - QColor m_gColor1; - QColor m_gColor2; + TQBrush m_brush; + TQColor m_gColor1; + TQColor m_gColor2; BCType m_gType; FillType m_fillType; bool m_unbalanced; |