summaryrefslogtreecommitdiffstats
path: root/tdeabc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-01 21:32:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-01 21:32:16 +0900
commitbba3128085abe1a32cca43d9fb8ac02c2a29bf6b (patch)
treef831d0139ef6cd483a39cc1fb0cb39445f317185 /tdeabc
parentcfbeb5efe9335d9a47bd5beebd81304cabab9f61 (diff)
downloadtdelibs-bba3128085abe1a32cca43d9fb8ac02c2a29bf6b.tar.gz
tdelibs-bba3128085abe1a32cca43d9fb8ac02c2a29bf6b.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeabc')
-rw-r--r--tdeabc/formats/binaryformat.cpp2
-rw-r--r--tdeabc/plugins/dir/resourcedirplugin.cpp2
-rw-r--r--tdeabc/plugins/evolution/resourceevo.cpp2
-rw-r--r--tdeabc/plugins/file/resourcefileplugin.cpp2
-rw-r--r--tdeabc/plugins/ldaptdeio/resourceldaptdeioplugin.cpp2
-rw-r--r--tdeabc/plugins/net/resourcenetplugin.cpp2
-rw-r--r--tdeabc/plugins/sql/resourcesql.cpp2
7 files changed, 7 insertions, 7 deletions
diff --git a/tdeabc/formats/binaryformat.cpp b/tdeabc/formats/binaryformat.cpp
index dcb49330e..778a81ef7 100644
--- a/tdeabc/formats/binaryformat.cpp
+++ b/tdeabc/formats/binaryformat.cpp
@@ -38,7 +38,7 @@ using namespace TDEABC;
extern "C"
{
- KDE_EXPORT FormatPlugin *format()
+ TDE_EXPORT FormatPlugin *format()
{
return new BinaryFormat;
}
diff --git a/tdeabc/plugins/dir/resourcedirplugin.cpp b/tdeabc/plugins/dir/resourcedirplugin.cpp
index 028dce31c..b2e749c6a 100644
--- a/tdeabc/plugins/dir/resourcedirplugin.cpp
+++ b/tdeabc/plugins/dir/resourcedirplugin.cpp
@@ -25,7 +25,7 @@ using namespace TDEABC;
extern "C"
{
- KDE_EXPORT void *init_tdeabc_dir()
+ TDE_EXPORT void *init_tdeabc_dir()
{
return new KRES::PluginFactory<ResourceDir, ResourceDirConfig>();
}
diff --git a/tdeabc/plugins/evolution/resourceevo.cpp b/tdeabc/plugins/evolution/resourceevo.cpp
index a5df5fe18..c9b71b818 100644
--- a/tdeabc/plugins/evolution/resourceevo.cpp
+++ b/tdeabc/plugins/evolution/resourceevo.cpp
@@ -30,7 +30,7 @@ class EvolutionFactory : public KRES::PluginFactoryBase
extern "C"
{
- KDE_EXPORT void *init_tdeabc_evo()
+ TDE_EXPORT void *init_tdeabc_evo()
{
return ( new EvolutionFactory() );
}
diff --git a/tdeabc/plugins/file/resourcefileplugin.cpp b/tdeabc/plugins/file/resourcefileplugin.cpp
index 6f7598a40..1838bf6b9 100644
--- a/tdeabc/plugins/file/resourcefileplugin.cpp
+++ b/tdeabc/plugins/file/resourcefileplugin.cpp
@@ -25,7 +25,7 @@ using namespace TDEABC;
extern "C"
{
- KDE_EXPORT void *init_tdeabc_file()
+ TDE_EXPORT void *init_tdeabc_file()
{
return new KRES::PluginFactory<ResourceFile, ResourceFileConfig>();
}
diff --git a/tdeabc/plugins/ldaptdeio/resourceldaptdeioplugin.cpp b/tdeabc/plugins/ldaptdeio/resourceldaptdeioplugin.cpp
index 6046e9ae2..aefd56b02 100644
--- a/tdeabc/plugins/ldaptdeio/resourceldaptdeioplugin.cpp
+++ b/tdeabc/plugins/ldaptdeio/resourceldaptdeioplugin.cpp
@@ -28,7 +28,7 @@ using namespace TDEABC;
extern "C"
{
- KDE_EXPORT void *init_tdeabc_ldaptdeio()
+ TDE_EXPORT void *init_tdeabc_ldaptdeio()
{
TDEGlobal::locale()->insertCatalogue("tdeabc_ldaptdeio");
return new KRES::PluginFactory<ResourceLDAPTDEIO, ResourceLDAPTDEIOConfig>();
diff --git a/tdeabc/plugins/net/resourcenetplugin.cpp b/tdeabc/plugins/net/resourcenetplugin.cpp
index cd87cc000..0e3b1d3c7 100644
--- a/tdeabc/plugins/net/resourcenetplugin.cpp
+++ b/tdeabc/plugins/net/resourcenetplugin.cpp
@@ -25,7 +25,7 @@ using namespace TDEABC;
extern "C"
{
- KDE_EXPORT void *init_tdeabc_net()
+ TDE_EXPORT void *init_tdeabc_net()
{
return new KRES::PluginFactory<ResourceNet, ResourceNetConfig>();
}
diff --git a/tdeabc/plugins/sql/resourcesql.cpp b/tdeabc/plugins/sql/resourcesql.cpp
index a820b56df..3741fff3b 100644
--- a/tdeabc/plugins/sql/resourcesql.cpp
+++ b/tdeabc/plugins/sql/resourcesql.cpp
@@ -33,7 +33,7 @@ using namespace TDEABC;
extern "C"
{
- KDE_EXPORT void *init_tdeabc_sql()
+ TDE_EXPORT void *init_tdeabc_sql()
{
return new KRES::PluginFactory<ResourceSql,ResourceSqlConfig>();
}