diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-20 19:19:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-21 10:08:53 +0900 |
commit | 9c3116fdd54f001a8b9dfec08a73ead565a932e9 (patch) | |
tree | 31bec23f34e0bdaefa7774cd3b4acb6910e89f36 | |
parent | 47025f3e8808c000e93a1d97585a83a5d7790285 (diff) | |
download | tdepim-9c3116fdd54f001a8b9dfec08a73ead565a932e9.tar.gz tdepim-9c3116fdd54f001a8b9dfec08a73ead565a932e9.zip |
Replace KDE_TQ_EXPORT_PLUGIN with TDE_* equivalent
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 5b07ddbad4bd99ea23817aafa9e3650d7eca91ba)
-rw-r--r-- | libtdepim/qutf7codecplugin.cpp | 2 | ||||
-rw-r--r-- | libtdepim/tdepartsdesignerplugin/tdepartsdesignerplugin.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libtdepim/qutf7codecplugin.cpp b/libtdepim/qutf7codecplugin.cpp index 7702ed9f1..7fd2623ba 100644 --- a/libtdepim/qutf7codecplugin.cpp +++ b/libtdepim/qutf7codecplugin.cpp @@ -59,4 +59,4 @@ TQTextCodec * TQUtf7CodecPlugin::createForName( const TQString & name ) { return 0; } -KDE_TQ_EXPORT_PLUGIN( TQUtf7CodecPlugin ); +TDE_EXPORT_PLUGIN( TQUtf7CodecPlugin ); diff --git a/libtdepim/tdepartsdesignerplugin/tdepartsdesignerplugin.cpp b/libtdepim/tdepartsdesignerplugin/tdepartsdesignerplugin.cpp index 58b247b85..618fccdd9 100644 --- a/libtdepim/tdepartsdesignerplugin/tdepartsdesignerplugin.cpp +++ b/libtdepim/tdepartsdesignerplugin/tdepartsdesignerplugin.cpp @@ -104,14 +104,14 @@ bool KPartsWidgetPlugin::isContainer( const TQString & /*key*/ ) const { } /// Duplicated from tdelibs/tdecore/kdemacros.h.in for those with tdelibs < 3.4 -#ifndef KDE_TQ_EXPORT_PLUGIN -#define KDE_TQ_EXPORT_PLUGIN(PLUGIN) \ +#ifndef TDE_EXPORT_PLUGIN +#define TDE_EXPORT_PLUGIN(PLUGIN) \ TQ_EXTERN_C TDE_EXPORT const char* qt_ucm_query_verification_data(); \ TQ_EXTERN_C TDE_EXPORT TQUnknownInterface* ucm_instantiate(); \ TQ_EXPORT_PLUGIN(PLUGIN) #endif -KDE_TQ_EXPORT_PLUGIN( KPartsWidgetPlugin ) +TDE_EXPORT_PLUGIN( KPartsWidgetPlugin ) #include "tdepartsdesignerplugin.moc" |