summaryrefslogtreecommitdiffstats
path: root/noatun-plugins
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:47:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-06 20:37:26 +0900
commit63063f5dceb4fb45a185897b6b5796fba673cbb0 (patch)
treeb7495323033ce46d91fcc626ddee8bc6ba701c9d /noatun-plugins
parent20a8d63f05fac076fc4a64591024f04db3bdd9ea (diff)
downloadtdeaddons-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')
-rw-r--r--noatun-plugins/alarm/wakeup.cpp2
-rw-r--r--noatun-plugins/alsaplayer/alsaplayerui.cpp2
-rw-r--r--noatun-plugins/blurscope/sdlscope.cpp2
-rw-r--r--noatun-plugins/charlatan/charlatanui.cpp2
-rw-r--r--noatun-plugins/dub/dub/dubplaylist.cpp2
-rw-r--r--noatun-plugins/ffrs/ffrs.cpp2
-rw-r--r--noatun-plugins/luckytag/luckytag.cpp2
-rw-r--r--noatun-plugins/lyrics/lyrics.cpp2
-rw-r--r--noatun-plugins/nexscope/noatunplugin.cpp2
-rw-r--r--noatun-plugins/noatunmadness/madness.cpp2
-rw-r--r--noatun-plugins/oblique/oblique.cpp2
-rw-r--r--noatun-plugins/pitchablespeed/pitchablespeed.cpp2
-rw-r--r--noatun-plugins/synaescope/synaescope.cpp2
-rw-r--r--noatun-plugins/tippercanoe/synaescope.cpp2
-rw-r--r--noatun-plugins/tyler/file.cpp6
-rw-r--r--noatun-plugins/tyler/tyler.cpp2
-rw-r--r--noatun-plugins/wavecapture/wavecapture.cpp2
17 files changed, 19 insertions, 19 deletions
diff --git a/noatun-plugins/alarm/wakeup.cpp b/noatun-plugins/alarm/wakeup.cpp
index 504ad77..f433da9 100644
--- a/noatun-plugins/alarm/wakeup.cpp
+++ b/noatun-plugins/alarm/wakeup.cpp
@@ -41,7 +41,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("wakeup");
return new Wakeup();
diff --git a/noatun-plugins/alsaplayer/alsaplayerui.cpp b/noatun-plugins/alsaplayer/alsaplayerui.cpp
index 84c92e0..06e6924 100644
--- a/noatun-plugins/alsaplayer/alsaplayerui.cpp
+++ b/noatun-plugins/alsaplayer/alsaplayerui.cpp
@@ -25,7 +25,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("alsaplayerui");
return new AlsaPlayer;
diff --git a/noatun-plugins/blurscope/sdlscope.cpp b/noatun-plugins/blurscope/sdlscope.cpp
index 1d153a3..2a55f99 100644
--- a/noatun-plugins/blurscope/sdlscope.cpp
+++ b/noatun-plugins/blurscope/sdlscope.cpp
@@ -29,7 +29,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
return new SDLScope();
}
diff --git a/noatun-plugins/charlatan/charlatanui.cpp b/noatun-plugins/charlatan/charlatanui.cpp
index b1ec9ec..586ddc7 100644
--- a/noatun-plugins/charlatan/charlatanui.cpp
+++ b/noatun-plugins/charlatan/charlatanui.cpp
@@ -25,7 +25,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("charlatanui");
return new Charlatan;
diff --git a/noatun-plugins/dub/dub/dubplaylist.cpp b/noatun-plugins/dub/dub/dubplaylist.cpp
index a8e91df..f1fd256 100644
--- a/noatun-plugins/dub/dub/dubplaylist.cpp
+++ b/noatun-plugins/dub/dub/dubplaylist.cpp
@@ -26,7 +26,7 @@
// plugin interface
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("dub");
DubPlaylist* dub = new DubPlaylist;
diff --git a/noatun-plugins/ffrs/ffrs.cpp b/noatun-plugins/ffrs/ffrs.cpp
index 065069a..1d7891d 100644
--- a/noatun-plugins/ffrs/ffrs.cpp
+++ b/noatun-plugins/ffrs/ffrs.cpp
@@ -16,7 +16,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("ffrs");
return new FFRS();
diff --git a/noatun-plugins/luckytag/luckytag.cpp b/noatun-plugins/luckytag/luckytag.cpp
index e30ab8d..38a920e 100644
--- a/noatun-plugins/luckytag/luckytag.cpp
+++ b/noatun-plugins/luckytag/luckytag.cpp
@@ -25,7 +25,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
return new LuckyTagger;
}
diff --git a/noatun-plugins/lyrics/lyrics.cpp b/noatun-plugins/lyrics/lyrics.cpp
index 353bef4..270dde4 100644
--- a/noatun-plugins/lyrics/lyrics.cpp
+++ b/noatun-plugins/lyrics/lyrics.cpp
@@ -14,7 +14,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("lyrics");
return new Lyrics();
diff --git a/noatun-plugins/nexscope/noatunplugin.cpp b/noatun-plugins/nexscope/noatunplugin.cpp
index fe4d569..5c27cef 100644
--- a/noatun-plugins/nexscope/noatunplugin.cpp
+++ b/noatun-plugins/nexscope/noatunplugin.cpp
@@ -8,7 +8,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("nexscope");
return new NexPlugin();
diff --git a/noatun-plugins/noatunmadness/madness.cpp b/noatun-plugins/noatunmadness/madness.cpp
index 99780bd..893639e 100644
--- a/noatun-plugins/noatunmadness/madness.cpp
+++ b/noatun-plugins/noatunmadness/madness.cpp
@@ -21,7 +21,7 @@ RMS's novel that I'm supposed to put at the top of every story. He's insane.
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
return new Madness();
}
diff --git a/noatun-plugins/oblique/oblique.cpp b/noatun-plugins/oblique/oblique.cpp
index 8365468..0942f61 100644
--- a/noatun-plugins/oblique/oblique.cpp
+++ b/noatun-plugins/oblique/oblique.cpp
@@ -19,7 +19,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
return new Oblique();
}
diff --git a/noatun-plugins/pitchablespeed/pitchablespeed.cpp b/noatun-plugins/pitchablespeed/pitchablespeed.cpp
index 2135d8e..86e542f 100644
--- a/noatun-plugins/pitchablespeed/pitchablespeed.cpp
+++ b/noatun-plugins/pitchablespeed/pitchablespeed.cpp
@@ -25,7 +25,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("pitchablespeed");
return new PitchableSpeed();
diff --git a/noatun-plugins/synaescope/synaescope.cpp b/noatun-plugins/synaescope/synaescope.cpp
index 3d143dd..6985a1f 100644
--- a/noatun-plugins/synaescope/synaescope.cpp
+++ b/noatun-plugins/synaescope/synaescope.cpp
@@ -15,7 +15,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("synaescope");
return new SynaeScope();
diff --git a/noatun-plugins/tippercanoe/synaescope.cpp b/noatun-plugins/tippercanoe/synaescope.cpp
index 5e20dd6..dfe6b17 100644
--- a/noatun-plugins/tippercanoe/synaescope.cpp
+++ b/noatun-plugins/tippercanoe/synaescope.cpp
@@ -21,7 +21,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("tippecanoe");
return new SynaeScope();
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();
diff --git a/noatun-plugins/wavecapture/wavecapture.cpp b/noatun-plugins/wavecapture/wavecapture.cpp
index 41118ec..875ea34 100644
--- a/noatun-plugins/wavecapture/wavecapture.cpp
+++ b/noatun-plugins/wavecapture/wavecapture.cpp
@@ -42,7 +42,7 @@
extern "C"
{
- KDE_EXPORT Plugin* create_plugin()
+ TDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("wavecapture");
return new WaveCapture();