diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-03 12:23:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-03 12:23:38 +0900 |
commit | e305356bf172a7e0d845e19f866c3c4885910876 (patch) | |
tree | 81597915c894dc187c26dfecb6ce65f0d705bd7e | |
parent | 7556d09fd53bf4897959da98c8701ee43d98cf36 (diff) | |
download | kommando-e305356bf172a7e0d845e19f866c3c4885910876.tar.gz kommando-e305356bf172a7e0d845e19f866c3c4885910876.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | src/configuration.h | 2 | ||||
-rw-r--r-- | src/kommandod.cpp | 2 | ||||
-rw-r--r-- | src/kommandoview.h | 4 | ||||
-rw-r--r-- | src/menulistviewitem.h | 2 | ||||
-rw-r--r-- | src/roundbutton.h | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/src/configuration.h b/src/configuration.h index c445920..4e3e232 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -29,7 +29,7 @@ class TQWidgetStack; -class KDE_EXPORT Config{ +class TDE_EXPORT Config{ public: static Config& getSingleton(){ static Config instance; diff --git a/src/kommandod.cpp b/src/kommandod.cpp index 3ebcd31..1893d31 100644 --- a/src/kommandod.cpp +++ b/src/kommandod.cpp @@ -61,7 +61,7 @@ void KommandoDaemon::reparseConfiguration() } extern "C" { - KDE_EXPORT KDEDModule *create_kommandod(const TQCString &obj) + TDE_EXPORT KDEDModule *create_kommandod(const TQCString &obj) { return new KommandoDaemon(obj); } diff --git a/src/kommandoview.h b/src/kommandoview.h index 2c2f60b..f45a010 100644 --- a/src/kommandoview.h +++ b/src/kommandoview.h @@ -26,7 +26,7 @@ /** @author Daniel Stöckel <the_docter@gmx.net> */ -class KDE_EXPORT KommandoView : public TQListView +class TDE_EXPORT KommandoView : public TQListView { public: KommandoView(TQWidget* parent, const TQString& name); @@ -38,7 +38,7 @@ class KDE_EXPORT KommandoView : public TQListView TQString m_AppName; }; -class KDE_EXPORT KommandoViewList : public TQPtrList<KommandoView> +class TDE_EXPORT KommandoViewList : public TQPtrList<KommandoView> { public: KommandoViewList(bool autoDelete = false); diff --git a/src/menulistviewitem.h b/src/menulistviewitem.h index 2b469a4..e9531c5 100644 --- a/src/menulistviewitem.h +++ b/src/menulistviewitem.h @@ -23,7 +23,7 @@ #include <tqlistview.h> #include <kdemacros.h> -class KDE_EXPORT MenuListViewItem : public TQListViewItem +class TDE_EXPORT MenuListViewItem : public TQListViewItem { public: enum ItemType{Menu,Button}; diff --git a/src/roundbutton.h b/src/roundbutton.h index 4b31172..1e29a26 100644 --- a/src/roundbutton.h +++ b/src/roundbutton.h @@ -28,7 +28,7 @@ class Menu; -class KDE_EXPORT RoundButton : public TQButton //well, there were round buttons in the begining at least *g* +class TDE_EXPORT RoundButton : public TQButton //well, there were round buttons in the begining at least *g* { TQ_OBJECT public: |