summaryrefslogtreecommitdiffstats
path: root/ksim/library/pluginmodule.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:49:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-06 17:42:00 +0900
commit713876207189dee076b1dbb0296c124ccac38b76 (patch)
treefcafe3aa3c66eaf012892cee0a9692f6ec690709 /ksim/library/pluginmodule.h
parent0600279d2db836586db19924e74abaf3a81b0480 (diff)
downloadtdeutils-71387620.tar.gz
tdeutils-71387620.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 2192355d1511c56c255a2d39f701c25f3ef0fdcf)
Diffstat (limited to 'ksim/library/pluginmodule.h')
-rw-r--r--ksim/library/pluginmodule.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksim/library/pluginmodule.h b/ksim/library/pluginmodule.h
index 805141f..e7dc363 100644
--- a/ksim/library/pluginmodule.h
+++ b/ksim/library/pluginmodule.h
@@ -29,7 +29,7 @@ class TDEConfig;
#define KSIM_INIT_PLUGIN(className) \
extern "C" { \
- KDE_EXPORT KSim::PluginObject *init_plugin(const char *name) { \
+ TDE_EXPORT KSim::PluginObject *init_plugin(const char *name) { \
return new className(name); \
} \
}
@@ -50,7 +50,7 @@ namespace KSim
* @see KSim::PluginView KSim::PluginPage
* @author Robbie Ward <linuxphreak@gmx.co.uk>
*/
- class KDE_EXPORT PluginObject
+ class TDE_EXPORT PluginObject
{
public:
/**
@@ -111,7 +111,7 @@ namespace KSim
* the config() to gain access to your config file
* @author Robbie Ward <linuxphreak@gmx.co.uk>
*/
- class KDE_EXPORT PluginPage : public TQWidget
+ class TDE_EXPORT PluginPage : public TQWidget
{
TQ_OBJECT
@@ -160,7 +160,7 @@ namespace KSim
* when apply or ok gets clicked in the config dialog
* @author Robbie Ward <linuxphreak@gmx.co.uk>
*/
- class KDE_EXPORT PluginView : public TQWidget
+ class TDE_EXPORT PluginView : public TQWidget
{
TQ_OBJECT