diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-03 12:21:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-03 12:21:33 +0900 |
commit | 8216f8447c4c19e31b8dfcb184a6e26ec4f27e13 (patch) | |
tree | de44f089317250b22b3ebfd0cb6945b094829d5f | |
parent | 515a3c18983c35efce759943522f4682b1f9454e (diff) | |
download | tde-style-domino-8216f8447c4c19e31b8dfcb184a6e26ec4f27e13.tar.gz tde-style-domino-8216f8447c4c19e31b8dfcb184a6e26ec4f27e13.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | client/config/config.cpp | 2 | ||||
-rw-r--r-- | client/dominoclient.cpp | 2 | ||||
-rw-r--r-- | dominoConfig/dominoconf.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/client/config/config.cpp b/client/config/config.cpp index 95b605e..8a75279 100644 --- a/client/config/config.cpp +++ b/client/config/config.cpp @@ -31,7 +31,7 @@ extern "C" { - KDE_EXPORT TQObject* allocate_config( TDEConfig* config, TQWidget* parent ) + TDE_EXPORT TQObject* allocate_config( TDEConfig* config, TQWidget* parent ) { return(new DominoConfig(config, parent)); } diff --git a/client/dominoclient.cpp b/client/dominoclient.cpp index a8c73ed..8995192 100644 --- a/client/dominoclient.cpp +++ b/client/dominoclient.cpp @@ -1190,7 +1190,7 @@ TQImage tintImage(const TQImage &img, const TQColor &tintColor) { } // namespace // Extended KWin plugin interface -extern "C" KDE_EXPORT KDecorationFactory* create_factory() +extern "C" TDE_EXPORT KDecorationFactory* create_factory() { return new Domino::DominoHandler(); } diff --git a/dominoConfig/dominoconf.cpp b/dominoConfig/dominoconf.cpp index fcdd693..70fb805 100644 --- a/dominoConfig/dominoconf.cpp +++ b/dominoConfig/dominoconf.cpp @@ -77,7 +77,7 @@ DEALINGS IN THE SOFTWARE. extern "C" { - KDE_EXPORT TQWidget* allocate_tdestyle_config(TQWidget* parent) + TDE_EXPORT TQWidget* allocate_tdestyle_config(TQWidget* parent) { TDEGlobal::locale()->insertCatalogue("tdestyle_domino_config"); return new DominoStyleConfig(parent); |