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/ntqfont.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/ntqfont.h')
-rw-r--r-- | src/kernel/ntqfont.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/ntqfont.h b/src/kernel/ntqfont.h index cdbd069d6..6f347e411 100644 --- a/src/kernel/ntqfont.h +++ b/src/kernel/ntqfont.h @@ -51,7 +51,7 @@ class TQFontPrivate; /* don't touch */ class TQStringList; class TQTextFormatCollection; -class Q_EXPORT TQFont +class TQ_EXPORT TQFont { public: enum StyleHint { @@ -341,8 +341,8 @@ private: friend TQt::HANDLE qt_xft_handle(const TQFont &font); #endif #ifndef TQT_NO_DATASTREAM - friend Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQFont & ); - friend Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQFont & ); + friend TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQFont & ); + friend TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQFont & ); #endif TQFontPrivate *d; @@ -364,8 +364,8 @@ inline void TQFont::setBold( bool enable ) *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQFont & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQFont & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQFont & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQFont & ); #endif |