diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-13 13:18:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-13 13:18:58 +0900 |
commit | 1ba13366a7a377d50b9e8df9044ce11d8209f98c (patch) | |
tree | 40765573bcccd42239475344141eb98d2ac5d45e /src/kernel/ntqimage.h | |
parent | 926102a455014e6ab308aaced19e32eed7ed4414 (diff) | |
download | tqt3-1ba13366a7a377d50b9e8df9044ce11d8209f98c.tar.gz tqt3-1ba13366a7a377d50b9e8df9044ce11d8209f98c.zip |
Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kernel/ntqimage.h')
-rw-r--r-- | src/kernel/ntqimage.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kernel/ntqimage.h b/src/kernel/ntqimage.h index 214af452b..d571aae01 100644 --- a/src/kernel/ntqimage.h +++ b/src/kernel/ntqimage.h @@ -49,7 +49,7 @@ class TQImageDataMisc; // internal #ifndef TQT_NO_IMAGE_TEXT -class Q_EXPORT TQImageTextKeyLang { +class TQ_EXPORT TQImageTextKeyLang { public: TQImageTextKeyLang(const char* k, const char* l) : key(k), lang(l) { } TQImageTextKeyLang() { } @@ -65,7 +65,7 @@ public: #endif //TQT_NO_IMAGE_TEXT -class Q_EXPORT TQImage +class TQ_EXPORT TQImage { public: enum Endian { IgnoreEndian, BigEndian, LittleEndian }; @@ -249,7 +249,7 @@ private: #ifndef TQT_NO_IMAGEIO bool doImageIO( TQImageIO* io, int quality ) const; #endif - friend Q_EXPORT void bitBlt( TQImage* dst, int dx, int dy, + friend TQ_EXPORT void bitBlt( TQImage* dst, int dx, int dy, const TQImage* src, int sx, int sy, int sw, int sh, int conversion_flags ); }; @@ -258,8 +258,8 @@ private: // TQImage stream functions #if !defined(TQT_NO_DATASTREAM) && !defined(TQT_NO_IMAGEIO) -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQImage & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQImage & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQImage & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQImage & ); #endif #ifndef TQT_NO_IMAGEIO @@ -270,7 +270,7 @@ typedef void (*image_io_handler)( TQImageIO * ); // image IO handler struct TQImageIOData; -class Q_EXPORT TQImageIO +class TQ_EXPORT TQImageIO { public: TQImageIO(); @@ -334,7 +334,7 @@ private: // Disabled copy constructor and operator= #endif //TQT_NO_IMAGEIO -Q_EXPORT void bitBlt( TQImage* dst, int dx, int dy, const TQImage* src, +TQ_EXPORT void bitBlt( TQImage* dst, int dx, int dy, const TQImage* src, int sx=0, int sy=0, int sw=-1, int sh=-1, int conversion_flags=0 ); |