From e63beeb5bdb82987b1e00bc35178667786fbad48 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Dec 2011 16:20:48 -0600 Subject: Fix incorrect conversion --- kjsembed/tools/headers/qbrush.h | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'kjsembed/tools/headers/qbrush.h') diff --git a/kjsembed/tools/headers/qbrush.h b/kjsembed/tools/headers/qbrush.h index 93f17e28..038e7699 100644 --- a/kjsembed/tools/headers/qbrush.h +++ b/kjsembed/tools/headers/qbrush.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** -** Definition of TTQBrush class +** Definition of TQBrush class ** ** Created : 940112 ** @@ -44,33 +44,33 @@ #endif // QT_H -class Q_EXPORT TTQBrush: public Qt +class Q_EXPORT TQBrush: public Qt { -friend class TTQPainter; +friend class TQPainter; public: - TTQBrush(); - TTQBrush( BrushStyle ); - TTQBrush( const TTQColor &, BrushStyle=SolidPattern ); - TTQBrush( const TTQColor &, const TTQPixmap & ); - TTQBrush( const TTQBrush & ); - ~TTQBrush(); - TTQBrush &operator=( const TTQBrush & ); + TQBrush(); + TQBrush( BrushStyle ); + TQBrush( const TQColor &, BrushStyle=SolidPattern ); + TQBrush( const TQColor &, const TQPixmap & ); + TQBrush( const TQBrush & ); + ~TQBrush(); + TQBrush &operator=( const TQBrush & ); BrushStyle style() const { return data->style; } void setStyle( BrushStyle ); - const TTQColor &color()const { return data->color; } - void setColor( const TTQColor & ); - TTQPixmap *pixmap() const { return data->pixmap; } - void setPixmap( const TTQPixmap & ); + const TQColor &color()const { return data->color; } + void setColor( const TQColor & ); + TQPixmap *pixmap() const { return data->pixmap; } + void setPixmap( const TQPixmap & ); - bool operator==( const TTQBrush &p ) const; - bool operator!=( const TTQBrush &b ) const + bool operator==( const TQBrush &p ) const; + bool operator!=( const TQBrush &b ) const { return !(operator==(b)); } private: TQBrush copy() const; void detach(); - void init( const TTQColor &, BrushStyle ); + void init( const TQColor &, BrushStyle ); struct TQBrushData : public TQShared { // brush data BrushStyle style; TQColor color; @@ -80,12 +80,12 @@ private: /***************************************************************************** - TTQBrush stream functions + TQBrush stream functions *****************************************************************************/ #ifndef QT_NO_DATASTREAM -Q_EXPORT TTQDataStream &operator<<( TTQDataStream &, const TTQBrush & ); -Q_EXPORT TTQDataStream &operator>>( TTQDataStream &, TTQBrush & ); +Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQBrush & ); +Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQBrush & ); #endif #endif // TQBRUSH_H -- cgit v1.2.1