diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-05 17:49:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-05 17:49:05 +0900 |
commit | 2192355d1511c56c255a2d39f701c25f3ef0fdcf (patch) | |
tree | dc0e7e087c33e969e34642ad4ae53bc49f297b10 /ksim | |
parent | 8d85c209631d50f8baa16d08baafabb7432f825a (diff) | |
download | tdeutils-2192355d1511c56c255a2d39f701c25f3ef0fdcf.tar.gz tdeutils-2192355d1511c56c255a2d39f701c25f3ef0fdcf.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ksim')
-rw-r--r-- | ksim/ksim.cpp | 2 | ||||
-rw-r--r-- | ksim/ksimpref.h | 2 | ||||
-rw-r--r-- | ksim/ksimview.h | 2 | ||||
-rw-r--r-- | ksim/library/chart.h | 2 | ||||
-rw-r--r-- | ksim/library/common.h | 2 | ||||
-rw-r--r-- | ksim/library/ksimconfig.h | 2 | ||||
-rw-r--r-- | ksim/library/label.h | 2 | ||||
-rw-r--r-- | ksim/library/led.h | 4 | ||||
-rw-r--r-- | ksim/library/pluginglobal.h | 4 | ||||
-rw-r--r-- | ksim/library/pluginloader.h | 4 | ||||
-rw-r--r-- | ksim/library/pluginmodule.h | 8 | ||||
-rw-r--r-- | ksim/library/progress.h | 2 | ||||
-rw-r--r-- | ksim/library/themeloader.h | 4 |
13 files changed, 20 insertions, 20 deletions
diff --git a/ksim/ksim.cpp b/ksim/ksim.cpp index 4d70777..445ba8c 100644 --- a/ksim/ksim.cpp +++ b/ksim/ksim.cpp @@ -36,7 +36,7 @@ extern "C" { - KDE_EXPORT KPanelExtension *init(TQWidget *parent, const TQString &configFile) + TDE_EXPORT KPanelExtension *init(TQWidget *parent, const TQString &configFile) { TDEGlobal::locale()->insertCatalogue("ksim"); return new KSim::PanelExtension(configFile, KPanelExtension::Normal, diff --git a/ksim/ksimpref.h b/ksim/ksimpref.h index 60a6902..b5f1156 100644 --- a/ksim/ksimpref.h +++ b/ksim/ksimpref.h @@ -70,7 +70,7 @@ namespace KSim ~ChangedPluginList() {} }; - class KDE_EXPORT ConfigDialog : public KDialogBase + class TDE_EXPORT ConfigDialog : public KDialogBase { TQ_OBJECT diff --git a/ksim/ksimview.h b/ksim/ksimview.h index 92e2923..6526f2d 100644 --- a/ksim/ksimview.h +++ b/ksim/ksimview.h @@ -46,7 +46,7 @@ namespace KSim class ConfigDialog; class ChangedPluginList; - class KDE_EXPORT MainView : public TQWidget, virtual public DCOPObject + class TDE_EXPORT MainView : public TQWidget, virtual public DCOPObject { TQ_OBJECT // diff --git a/ksim/library/chart.h b/ksim/library/chart.h index be075bf..1cb53be 100644 --- a/ksim/library/chart.h +++ b/ksim/library/chart.h @@ -33,7 +33,7 @@ namespace KSim * provides a graph displaying data onscreen using gkrellm themes * @author Robbie Ward <linuxphreak@gmx.co.uk> */ - class KDE_EXPORT Chart : public TQWidget, public KSim::Base + class TDE_EXPORT Chart : public TQWidget, public KSim::Base { TQ_OBJECT diff --git a/ksim/library/common.h b/ksim/library/common.h index 9fc01c0..6f6ae56 100644 --- a/ksim/library/common.h +++ b/ksim/library/common.h @@ -72,7 +72,7 @@ namespace KSim * @short base class for widgets * @author Robbie Ward <linuxphreak@gmx.co.uk> */ - class KDE_EXPORT Base + class TDE_EXPORT Base { public: Base(); diff --git a/ksim/library/ksimconfig.h b/ksim/library/ksimconfig.h index 8f7376d..f16a67e 100644 --- a/ksim/library/ksimconfig.h +++ b/ksim/library/ksimconfig.h @@ -33,7 +33,7 @@ namespace KSim /** * @internal */ - class KDE_EXPORT Config + class TDE_EXPORT Config { public: Config(TDEConfig *config); diff --git a/ksim/library/label.h b/ksim/library/label.h index aad3285..40c0b48 100644 --- a/ksim/library/label.h +++ b/ksim/library/label.h @@ -34,7 +34,7 @@ namespace KSim * @short Label widget * @author Robbie Ward <linuxphreak@gmx.co.uk> */ - class KDE_EXPORT Label : public TQWidget, public KSim::Base + class TDE_EXPORT Label : public TQWidget, public KSim::Base { TQ_OBJECT diff --git a/ksim/library/led.h b/ksim/library/led.h index bcc256d..de912c8 100644 --- a/ksim/library/led.h +++ b/ksim/library/led.h @@ -34,7 +34,7 @@ namespace KSim * @short led using gkrellm themes * @author Robbie Ward <linuxphreak@gmx.co.uk> */ - class KDE_EXPORT Led : public TQPixmap + class TDE_EXPORT Led : public TQPixmap { public: enum Type { First = 0, Second }; @@ -104,7 +104,7 @@ namespace KSim * @short Label widget with 2 leds * @author Robbie Ward <linuxphreak@gmx.co.uk> */ - class KDE_EXPORT LedLabel : public KSim::Progress + class TDE_EXPORT LedLabel : public KSim::Progress { TQ_OBJECT diff --git a/ksim/library/pluginglobal.h b/ksim/library/pluginglobal.h index e094198..7258ce5 100644 --- a/ksim/library/pluginglobal.h +++ b/ksim/library/pluginglobal.h @@ -38,7 +38,7 @@ namespace KSim * A class that holds various information about a plugin * @author Robbie Ward <linuxphreak@gmx.co.uk> */ - class KDE_EXPORT Plugin + class TDE_EXPORT Plugin { public: /** @@ -135,7 +135,7 @@ namespace KSim * use pluginList() from KSim::PluginLoader instead * @author Robbie Ward <linuxphreak@gmx.co.uk> */ - class KDE_EXPORT PluginList : public TQValueList<Plugin> + class TDE_EXPORT PluginList : public TQValueList<Plugin> { public: /** diff --git a/ksim/library/pluginloader.h b/ksim/library/pluginloader.h index 477828e..7f3b3f8 100644 --- a/ksim/library/pluginloader.h +++ b/ksim/library/pluginloader.h @@ -27,7 +27,7 @@ namespace KSim { - class KDE_EXPORT PluginInfo + class TDE_EXPORT PluginInfo { friend class PluginLoader; public: @@ -61,7 +61,7 @@ namespace KSim * Provides a loader for the plugins * @author Robbie Ward <linuxphreak@gmx.co.uk> */ - class KDE_EXPORT PluginLoader : public TQObject + class TDE_EXPORT PluginLoader : public TQObject { TQ_OBJECT 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 diff --git a/ksim/library/progress.h b/ksim/library/progress.h index 9780e64..1439652 100644 --- a/ksim/library/progress.h +++ b/ksim/library/progress.h @@ -30,7 +30,7 @@ namespace KSim * provides a label with a progress bar meter * @author Robbie Ward <linuxphreak@gmx.co.uk> */ - class KDE_EXPORT Progress : public KSim::Label + class TDE_EXPORT Progress : public KSim::Label { TQ_OBJECT diff --git a/ksim/library/themeloader.h b/ksim/library/themeloader.h index c70dc92..cb38b2c 100644 --- a/ksim/library/themeloader.h +++ b/ksim/library/themeloader.h @@ -44,7 +44,7 @@ namespace KSim * @author Robbie Ward <linuxphreak@gmx.co.uk> * @short Provides a loader for the themes */ - class KDE_EXPORT Theme + class TDE_EXPORT Theme { friend class ThemeLoader; public: @@ -397,7 +397,7 @@ namespace KSim * @author Robbie Ward <linuxphreak@gmx.co.uk> * @short Provides a loader for the themes */ - class KDE_EXPORT ThemeLoader + class TDE_EXPORT ThemeLoader { public: /** |