diff options
author | Michele Calgaro <[email protected]> | 2024-05-03 12:15:51 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-03 13:17:15 +0900 |
commit | 22a46b7525fb4db31bdd603c7a18a9204144ef0f (patch) | |
tree | 3b66e89fa223a12e750ac61ce9bbb5238adc221a /src/kmplayer_def.h | |
parent | 132da05296348b21a3c600ecc299d3440e8f0f72 (diff) | |
download | kmplayer-22a46b7525fb4db31bdd603c7a18a9204144ef0f.tar.gz kmplayer-22a46b7525fb4db31bdd603c7a18a9204144ef0f.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kmplayer_def.h')
-rw-r--r-- | src/kmplayer_def.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kmplayer_def.h b/src/kmplayer_def.h index 7c3ee7f..044be16 100644 --- a/src/kmplayer_def.h +++ b/src/kmplayer_def.h @@ -31,16 +31,16 @@ #include <kdemacros.h> #undef KDE_NO_CDTOR_EXPORT -#undef KDE_NO_EXPORT -#ifndef KDE_EXPORT - #define KDE_EXPORT +#undef TDE_NO_EXPORT +#ifndef TDE_EXPORT + #define TDE_EXPORT #endif #if __GNUC__ - 0 > 3 && __GNUC_MINOR__ - 0 > 1 # define KMPLAYER_NO_EXPORT __attribute__ ((visibility("hidden"))) # define KMPLAYER_EXPORT __attribute__ ((visibility("default"))) # define KMPLAYER_NO_MBR_EXPORT __attribute__ ((visibility("hidden"))) # define KDE_NO_CDTOR_EXPORT -# define KDE_NO_EXPORT +# define TDE_NO_EXPORT #elif __GNUC__ - 0 > 3 || (__GNUC__ - 0 == 3 && __GNUC_MINOR__ - 0 > 3) #if __GNUC__ - 0 > 3 #define KMPLAYER_NO_EXPORT __attribute__ ((visibility("hidden"))) @@ -48,18 +48,18 @@ #define KMPLAYER_NO_EXPORT #endif #define KDE_NO_CDTOR_EXPORT __attribute__ ((visibility("hidden"))) - #define KDE_NO_EXPORT __attribute__ ((visibility("hidden"))) + #define TDE_NO_EXPORT __attribute__ ((visibility("hidden"))) #define KMPLAYER_EXPORT __attribute__ ((visibility("default"))) #define KMPLAYER_NO_MBR_EXPORT #elif __GNUC__ - 0 > 3 || (__GNUC__ - 0 == 3 && __GNUC_MINOR__ - 0 > 2) #define KDE_NO_CDTOR_EXPORT - #define KDE_NO_EXPORT __attribute__ ((visibility("hidden"))) + #define TDE_NO_EXPORT __attribute__ ((visibility("hidden"))) #define KMPLAYER_EXPORT #define KMPLAYER_NO_EXPORT #define KMPLAYER_NO_MBR_EXPORT #else #define KDE_NO_CDTOR_EXPORT - #define KDE_NO_EXPORT + #define TDE_NO_EXPORT #define KMPLAYER_EXPORT #define KMPLAYER_NO_EXPORT #define KMPLAYER_NO_MBR_EXPORT |