summaryrefslogtreecommitdiffstats
path: root/noatun/library/noatun/plugin.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:33 +0900
commitcdd8febb68a55d7651ba5f18cb54bbd2e96e448a (patch)
tree79c8f33c33acda097108b022db1e591b234af968 /noatun/library/noatun/plugin.h
parent249738f07cec0169142f5cbdf79d222ddbcf3a4b (diff)
downloadtdemultimedia-cdd8febb68a55d7651ba5f18cb54bbd2e96e448a.tar.gz
tdemultimedia-cdd8febb68a55d7651ba5f18cb54bbd2e96e448a.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'noatun/library/noatun/plugin.h')
-rw-r--r--noatun/library/noatun/plugin.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/noatun/library/noatun/plugin.h b/noatun/library/noatun/plugin.h
index f01b0f27..504d2ec3 100644
--- a/noatun/library/noatun/plugin.h
+++ b/noatun/library/noatun/plugin.h
@@ -24,7 +24,7 @@ class NoatunApp;
/**
* @short Base class for all plugins
**/
-class KDE_EXPORT Plugin
+class TDE_EXPORT Plugin
{
public:
Plugin();
@@ -58,7 +58,7 @@ public:
* Inherit from this one instead of Plugin if you are
* a user-interface
**/
-class KDE_EXPORT UserInterface : public Plugin
+class TDE_EXPORT UserInterface : public Plugin
{
public:
UserInterface();
@@ -162,7 +162,7 @@ private:
/**
* Base class for all kinds of FFT scopes
**/
-class KDE_EXPORT FFTScope : public Visualization
+class TDE_EXPORT FFTScope : public Visualization
{
public:
FFTScope(int interval, int pid=0);
@@ -205,7 +205,7 @@ public:
* An easy to use FFT scope, stereo version.
* You certainly want to reimplement scopeEvent()
**/
-class KDE_EXPORT StereoFFTScope : public FFTScope
+class TDE_EXPORT StereoFFTScope : public FFTScope
{
public:
StereoFFTScope(int timeout=250, int pid=0);
@@ -242,7 +242,7 @@ private:
* An easy to use FFT scope, mono version.
* You certainly want to reimplement scopeEvent()
**/
-class KDE_EXPORT MonoFFTScope : public FFTScope
+class TDE_EXPORT MonoFFTScope : public FFTScope
{
public:
MonoFFTScope(int timeout=250, int pid=0);
@@ -302,7 +302,7 @@ public:
* Note: Of course this one also works for audio with more than one channel
* You certainly want to reimplement scopeEvent()
*/
-class KDE_EXPORT MonoScope : public Scope
+class TDE_EXPORT MonoScope : public Scope
{
public:
MonoScope(int timeout=250, int pid=0);