diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-20 19:16:39 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-20 19:16:39 +0900 |
commit | 540f3a5ec60ee16ccf6ea6124718e2cf86a985ce (patch) | |
tree | d89279bbb5c42e661896d906a09f5d5fa9625ebe /lib | |
parent | 942e33082e4561d221cb9073f82576e601a4771c (diff) | |
download | tdewebdev-540f3a5ec60ee16ccf6ea6124718e2cf86a985ce.tar.gz tdewebdev-540f3a5ec60ee16ccf6ea6124718e2cf86a985ce.zip |
Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/compatibility/tdemdi/qextmdi/kdemacros.h.in | 10 |
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 /** |