summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-20 19:16:39 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-21 10:08:04 +0900
commit2a1388a5852537dffc63581cceae438f3799dd1f (patch)
tree87021db0dd8207aba42337335ac0fa5373bf7301
parent11eb1ed116acdbdef87c0441702e81ca00846341 (diff)
downloadtdewebdev-2a1388a5852537dffc63581cceae438f3799dd1f.tar.gz
tdewebdev-2a1388a5852537dffc63581cceae438f3799dd1f.zip
Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 540f3a5ec60ee16ccf6ea6124718e2cf86a985ce)
-rw-r--r--lib/compatibility/tdemdi/qextmdi/kdemacros.h.in10
1 files 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
/**