diff options
author | Michele Calgaro <[email protected]> | 2024-05-05 17:47:17 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-06 20:37:26 +0900 |
commit | 63063f5dceb4fb45a185897b6b5796fba673cbb0 (patch) | |
tree | b7495323033ce46d91fcc626ddee8bc6ba701c9d /noatun-plugins/tyler | |
parent | 20a8d63f05fac076fc4a64591024f04db3bdd9ea (diff) | |
download | tdeaddons-63063f5dceb4fb45a185897b6b5796fba673cbb0.tar.gz tdeaddons-63063f5dceb4fb45a185897b6b5796fba673cbb0.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'noatun-plugins/tyler')
-rw-r--r-- | noatun-plugins/tyler/file.cpp | 6 | ||||
-rw-r--r-- | noatun-plugins/tyler/tyler.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/noatun-plugins/tyler/file.cpp b/noatun-plugins/tyler/file.cpp index 79fb663..afbf908 100644 --- a/noatun-plugins/tyler/file.cpp +++ b/noatun-plugins/tyler/file.cpp @@ -41,7 +41,7 @@ static TQString getSavePath(void) extern "C" { - KDE_EXPORT void save_effect(t_effect *effect) + TDE_EXPORT void save_effect(t_effect *effect) { TQFile file(getSavePath()); if(!file.open(IO_WriteOnly)) @@ -61,7 +61,7 @@ int nb_effects=0; extern "C" { - KDE_EXPORT void load_effects() + TDE_EXPORT void load_effects() { TQFile file(getDataPath()); if(!file.open(IO_ReadOnly)) @@ -84,7 +84,7 @@ extern "C" extern "C" { - KDE_EXPORT void load_random_effect(t_effect *effect) + TDE_EXPORT void load_random_effect(t_effect *effect) { if(nb_effects > 0) { diff --git a/noatun-plugins/tyler/tyler.cpp b/noatun-plugins/tyler/tyler.cpp index 5eb7073..d50bc30 100644 --- a/noatun-plugins/tyler/tyler.cpp +++ b/noatun-plugins/tyler/tyler.cpp @@ -14,7 +14,7 @@ extern "C" { - KDE_EXPORT Plugin* create_plugin() + TDE_EXPORT Plugin* create_plugin() { TDEGlobal::locale()->insertCatalogue("tyler"); return new Tyler(); |