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 22:34:26 +0900 |
commit | 22ddaacbbe263bdb889425852250b864a042e0c5 (patch) | |
tree | a8b1bff3826a28cace97ab71848a443c67f229cd /kicker-applets/kolourpicker | |
parent | 1650326a063d48ee2831512b8049991587b76d52 (diff) | |
download | tdeaddons-22ddaacbbe263bdb889425852250b864a042e0c5.tar.gz tdeaddons-22ddaacbbe263bdb889425852250b864a042e0c5.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 63063f5dceb4fb45a185897b6b5796fba673cbb0)
Diffstat (limited to 'kicker-applets/kolourpicker')
-rw-r--r-- | kicker-applets/kolourpicker/kolourpicker.cpp | 2 | ||||
-rw-r--r-- | kicker-applets/kolourpicker/simplebutton.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kicker-applets/kolourpicker/kolourpicker.cpp b/kicker-applets/kolourpicker/kolourpicker.cpp index 4328f8f..3e8924b 100644 --- a/kicker-applets/kolourpicker/kolourpicker.cpp +++ b/kicker-applets/kolourpicker/kolourpicker.cpp @@ -48,7 +48,7 @@ $Id$ // Applet initialization function extern "C" { - KDE_EXPORT KPanelApplet* init(TQWidget *parent, const TQString& configFile) + TDE_EXPORT KPanelApplet* init(TQWidget *parent, const TQString& configFile) { TDEGlobal::locale()->insertCatalogue("kolourpicker"); return new KolourPicker(configFile, KPanelApplet::Normal, diff --git a/kicker-applets/kolourpicker/simplebutton.h b/kicker-applets/kolourpicker/simplebutton.h index 7243d50..5e27981 100644 --- a/kicker-applets/kolourpicker/simplebutton.h +++ b/kicker-applets/kolourpicker/simplebutton.h @@ -26,7 +26,7 @@ #include <kdemacros.h> -class KDE_EXPORT SimpleButton : public TQButton +class TDE_EXPORT SimpleButton : public TQButton { TQ_OBJECT @@ -61,7 +61,7 @@ class KDE_EXPORT SimpleButton : public TQButton SimpleButtonPrivate* d; }; -class KDE_EXPORT SimpleArrowButton: public SimpleButton +class TDE_EXPORT SimpleArrowButton: public SimpleButton { TQ_OBJECT |