diff options
author | Michele Calgaro <[email protected]> | 2024-05-05 17:48:40 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-05 17:48:40 +0900 |
commit | 3e0f7a409460b4a40872efd34398ea4ebcf64c47 (patch) | |
tree | 1a4a3baf4e5d99bed65742da56ec3e1c7c7c9d2c /kopete | |
parent | 263539096d9f265deccacb29c4a39fb85be41af8 (diff) | |
download | tdenetwork-3e0f7a409460b4a40872efd34398ea4ebcf64c47.tar.gz tdenetwork-3e0f7a409460b4a40872efd34398ea4ebcf64c47.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kopete')
-rw-r--r-- | kopete/libkopete/kopete_export.h | 2 | ||||
-rw-r--r-- | kopete/protocols/jabber/tdeioslave/jabberdisco.cpp | 2 | ||||
-rw-r--r-- | kopete/protocols/msn/Makefile.am | 4 | ||||
-rw-r--r-- | kopete/protocols/msn/dummy.cpp | 4 | ||||
-rw-r--r-- | kopete/protocols/oscar/oscaraccount.h | 2 | ||||
-rw-r--r-- | kopete/protocols/oscar/oscarcontact.h | 2 | ||||
-rw-r--r-- | kopete/protocols/oscar/oscarmyselfcontact.h | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/kopete/libkopete/kopete_export.h b/kopete/libkopete/kopete_export.h index 2c1e35cf..43d76676 100644 --- a/kopete/libkopete/kopete_export.h +++ b/kopete/libkopete/kopete_export.h @@ -22,7 +22,7 @@ #include <tdeversion.h> #if KDE_IS_VERSION(3,3,2) -#define KOPETE_EXPORT KDE_EXPORT +#define KOPETE_EXPORT TDE_EXPORT #else #define KOPETE_EXPORT #endif diff --git a/kopete/protocols/jabber/tdeioslave/jabberdisco.cpp b/kopete/protocols/jabber/tdeioslave/jabberdisco.cpp index 709255a7..9dd0d30b 100644 --- a/kopete/protocols/jabber/tdeioslave/jabberdisco.cpp +++ b/kopete/protocols/jabber/tdeioslave/jabberdisco.cpp @@ -378,7 +378,7 @@ void JabberDiscoProtocol::dispatchLoop () extern "C" { - KDE_EXPORT int kdemain(int argc, char **argv); + TDE_EXPORT int kdemain(int argc, char **argv); } diff --git a/kopete/protocols/msn/Makefile.am b/kopete/protocols/msn/Makefile.am index 5248d295..10d05490 100644 --- a/kopete/protocols/msn/Makefile.am +++ b/kopete/protocols/msn/Makefile.am @@ -35,8 +35,8 @@ kopete_msn_la_LDFLAGS = -no-undefined -module $(KDE_PLUGIN) $(all_libraries) $(L dummy.cpp: $(srcdir)/Makefile.am echo '#include "kdemacros.h"' > $@ - echo 'extern "C" KDE_EXPORT void *init_libkopete_msn_shared();' >> $@ - echo 'extern "C" KDE_EXPORT void *init_kopete_msn() { return init_libkopete_msn_shared(); }' >> $@ + echo 'extern "C" TDE_EXPORT void *init_libkopete_msn_shared();' >> $@ + echo 'extern "C" TDE_EXPORT void *init_kopete_msn() { return init_libkopete_msn_shared(); }' >> $@ service_DATA = kopete_msn.desktop servicedir = $(kde_servicesdir) diff --git a/kopete/protocols/msn/dummy.cpp b/kopete/protocols/msn/dummy.cpp index 6edd39fa..c1273f3a 100644 --- a/kopete/protocols/msn/dummy.cpp +++ b/kopete/protocols/msn/dummy.cpp @@ -1,3 +1,3 @@ #include "kdemacros.h" -extern "C" KDE_EXPORT void *init_libkopete_msn_shared(); -extern "C" KDE_EXPORT void *init_kopete_msn() { return init_libkopete_msn_shared(); } +extern "C" TDE_EXPORT void *init_libkopete_msn_shared(); +extern "C" TDE_EXPORT void *init_kopete_msn() { return init_libkopete_msn_shared(); } diff --git a/kopete/protocols/oscar/oscaraccount.h b/kopete/protocols/oscar/oscaraccount.h index 62603c07..ccffb037 100644 --- a/kopete/protocols/oscar/oscaraccount.h +++ b/kopete/protocols/oscar/oscaraccount.h @@ -39,7 +39,7 @@ class OscarContact; class OscarAccountPrivate; class TQTextCodec; -class KDE_EXPORT OscarAccount : public Kopete::PasswordedAccount +class TDE_EXPORT OscarAccount : public Kopete::PasswordedAccount { TQ_OBJECT diff --git a/kopete/protocols/oscar/oscarcontact.h b/kopete/protocols/oscar/oscarcontact.h index a1286c6d..456a7aa9 100644 --- a/kopete/protocols/oscar/oscarcontact.h +++ b/kopete/protocols/oscar/oscarcontact.h @@ -57,7 +57,7 @@ class TDEToggleAction; * \li get/set the ignore setting for the contact * \li get/set the visibility setting for the contact ( i.e. are we visible to the contact ) */ -class KDE_EXPORT OscarContact : public Kopete::Contact +class TDE_EXPORT OscarContact : public Kopete::Contact { TQ_OBJECT diff --git a/kopete/protocols/oscar/oscarmyselfcontact.h b/kopete/protocols/oscar/oscarmyselfcontact.h index 0de022d0..15c90fe0 100644 --- a/kopete/protocols/oscar/oscarmyselfcontact.h +++ b/kopete/protocols/oscar/oscarmyselfcontact.h @@ -34,7 +34,7 @@ class TDEToggleAction; * myself() contact for oscar protocol * @author Richard Smith */ -class KDE_EXPORT OscarMyselfContact : public Kopete::Contact +class TDE_EXPORT OscarMyselfContact : public Kopete::Contact { TQ_OBJECT |