From 540f3a5ec60ee16ccf6ea6124718e2cf86a985ce Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 20 May 2024 19:16:39 +0900 Subject: [PATCH] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent Signed-off-by: Michele Calgaro --- lib/compatibility/tdemdi/qextmdi/kdemacros.h.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/compatibility/tdemdi/qextmdi/kdemacros.h.in b/lib/compatibility/tdemdi/qextmdi/kdemacros.h.in index fe5605be..6bca547a 100644 --- a/lib/compatibility/tdemdi/qextmdi/kdemacros.h.in +++ b/lib/compatibility/tdemdi/qextmdi/kdemacros.h.in @@ -49,23 +49,23 @@ #endif /** - * KDE_TQ_EXPORT_PLUGIN is a workaround for TQt not being able to + * TDE_EXPORT_PLUGIN is a workaround for TQt not being able to * cope with symbol visibility. */ -#define KDE_TQ_EXPORT_PLUGIN(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) /** - * The KDE_PACKED can be used to hint the compiler that a particular + * The TDE_PACKED can be used to hint the compiler that a particular * structure or class should not contain unnecessary paddings. */ #ifdef __GNUC__ -#define KDE_PACKED __attribute__((__packed__)) +#define TDE_PACKED __attribute__((__packed__)) #else -#define KDE_PACKED +#define TDE_PACKED #endif /**