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 /plugins/src/imageformats | |
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 'plugins/src/imageformats')
-rw-r--r-- | plugins/src/imageformats/jpeg/main.cpp | 2 | ||||
-rw-r--r-- | plugins/src/imageformats/mng/main.cpp | 2 | ||||
-rw-r--r-- | plugins/src/imageformats/png/main.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/src/imageformats/jpeg/main.cpp b/plugins/src/imageformats/jpeg/main.cpp index f329756f5..d4f66b064 100644 --- a/plugins/src/imageformats/jpeg/main.cpp +++ b/plugins/src/imageformats/jpeg/main.cpp @@ -68,6 +68,6 @@ bool JPEGFormat::installIOHandler( const TQString &name ) return TRUE; } -Q_EXPORT_PLUGIN( JPEGFormat ) +TQ_EXPORT_PLUGIN( JPEGFormat ) #endif // TQT_NO_IMAGEFORMATPLUGIN diff --git a/plugins/src/imageformats/mng/main.cpp b/plugins/src/imageformats/mng/main.cpp index 74aca8e76..f08dc3166 100644 --- a/plugins/src/imageformats/mng/main.cpp +++ b/plugins/src/imageformats/mng/main.cpp @@ -50,6 +50,6 @@ bool MNGFormat::installIOHandler( const TQString &name ) return TRUE; } -Q_EXPORT_PLUGIN( MNGFormat ) +TQ_EXPORT_PLUGIN( MNGFormat ) #endif // TQT_NO_IMAGEFORMATPLUGIN diff --git a/plugins/src/imageformats/png/main.cpp b/plugins/src/imageformats/png/main.cpp index ce37abb44..7724c9112 100644 --- a/plugins/src/imageformats/png/main.cpp +++ b/plugins/src/imageformats/png/main.cpp @@ -68,6 +68,6 @@ bool PNGFormat::installIOHandler( const TQString &name ) return TRUE; } -Q_EXPORT_PLUGIN( PNGFormat ) +TQ_EXPORT_PLUGIN( PNGFormat ) #endif // TQT_NO_IMAGEFORMATPLUGIN |