diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-05 17:47:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-06 20:37:26 +0900 |
commit | 63063f5dceb4fb45a185897b6b5796fba673cbb0 (patch) | |
tree | b7495323033ce46d91fcc626ddee8bc6ba701c9d /noatun-plugins/tyler/file.cpp | |
parent | 20a8d63f05fac076fc4a64591024f04db3bdd9ea (diff) | |
download | tdeaddons-63063f5dceb4fb45a185897b6b5796fba673cbb0.tar.gz tdeaddons-63063f5dceb4fb45a185897b6b5796fba673cbb0.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'noatun-plugins/tyler/file.cpp')
-rw-r--r-- | noatun-plugins/tyler/file.cpp | 6 |
1 files changed, 3 insertions, 3 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) { |