diff options
Diffstat (limited to 'tqtinterface/qt4/src/kernel/tqpixmap.h')
-rw-r--r-- | tqtinterface/qt4/src/kernel/tqpixmap.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tqtinterface/qt4/src/kernel/tqpixmap.h b/tqtinterface/qt4/src/kernel/tqpixmap.h index 13a0a2c..a489706 100644 --- a/tqtinterface/qt4/src/kernel/tqpixmap.h +++ b/tqtinterface/qt4/src/kernel/tqpixmap.h @@ -99,7 +99,7 @@ public: TQBitmap createHeuristicMask( bool clipTight = TRUE ) const; #endif - const TQBitmap *tqmask() const; + const TQBitmap *mask() const; TQImage convertToImage() const; bool selfMask() const; @@ -237,7 +237,7 @@ public: void resize( int width, int height ); void resize( const TQSize & ); - const TQBitmap *tqmask() const; + const TQBitmap *mask() const; void setMask( const TQBitmap & ); bool selfMask() const; bool hasAlpha() const; @@ -340,7 +340,7 @@ protected: uint mcp : 1; #endif int ser_no; - TQBitmap *tqmask; + TQBitmap *mask; #if defined(TQ_WS_WIN) TQPixmap *maskpm; union { @@ -425,9 +425,9 @@ inline void TQPixmap::resize( const TQSize &s ) resize( s.width(), s.height() ); } -inline const TQBitmap *TQPixmap::tqmask() const +inline const TQBitmap *TQPixmap::mask() const { - return data->tqmask; + return data->mask; } inline bool TQPixmap::selfMask() const |