diff options
author | Michele Calgaro <[email protected]> | 2023-09-13 13:18:58 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-14 10:35:25 +0900 |
commit | eb42871e999672a8fad5793733c58be05928c8ea (patch) | |
tree | 57323eeb0fc8e0f0c30389b23d1aac0870ff3953 /doc/html/qpixmap-h.html | |
parent | 440483234fd5d8f29517d9c84b4227db80a90361 (diff) | |
download | tqt3-eb42871e999672a8fad5793733c58be05928c8ea.tar.gz tqt3-eb42871e999672a8fad5793733c58be05928c8ea.zip |
Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 1ba13366a7a377d50b9e8df9044ce11d8209f98c)
Diffstat (limited to 'doc/html/qpixmap-h.html')
-rw-r--r-- | doc/html/qpixmap-h.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/qpixmap-h.html b/doc/html/qpixmap-h.html index 8a6a6618b..b8f8654d9 100644 --- a/doc/html/qpixmap-h.html +++ b/doc/html/qpixmap-h.html @@ -93,7 +93,7 @@ class TQMultiCellPixmap; #endif -class Q_EXPORT TQPixmap : public TQPaintDevice, public TQt +class TQ_EXPORT TQPixmap : public TQPaintDevice, public TQt { public: enum ColorMode { Auto, Color, Mono }; @@ -283,13 +283,13 @@ private: int sw, int sh, bool useDstAlpha ); #endif static Optimization defOptim; - friend Q_EXPORT void bitBlt( TQPaintDevice *, int, int, + friend TQ_EXPORT void bitBlt( TQPaintDevice *, int, int, const TQPaintDevice *, int, int, int, int, RasterOp, bool ); - friend Q_EXPORT void bitBlt( TQPaintDevice *, int, int, + friend TQ_EXPORT void bitBlt( TQPaintDevice *, int, int, const TQImage* src, int, int, int, int, int conversion_flags ); - friend Q_EXPORT void copyBlt( TQPixmap *dst, int dx, int dy, + friend TQ_EXPORT void copyBlt( TQPixmap *dst, int dx, int dy, const TQPixmap *src, int sx, int sy, int sw, int sh ); @@ -366,8 +366,8 @@ inline bool TQPixmap::isMultiCellPixmap() const *****************************************************************************/ #if !defined(TQT_NO_DATASTREAM) && !defined(TQT_NO_IMAGEIO) -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPixmap & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPixmap & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPixmap & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQPixmap & ); #endif /***************************************************************************** @@ -383,7 +383,7 @@ Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPixmap & bool qt_xForm_helper( const TQWMatrix&, int, int, int, uchar*, int, int, int, uchar*, int, int, int ); #endif -Q_EXPORT void copyBlt( TQPixmap *dst, int dx, int dy, +TQ_EXPORT void copyBlt( TQPixmap *dst, int dx, int dy, const TQPixmap *src, int sx = 0, int sy = 0, int sw = -1, int sh = -1 ); |