summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/scripting
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-05-03 12:17:04 +0900
committerMichele Calgaro <[email protected]>2024-05-07 12:39:33 +0900
commit9fa1a9ed2f99b81348c5636b1bd4d82dba553e1e (patch)
treed958ac4c06c10c7444e2af3907cd0928152e02c8 /kexi/plugins/scripting
parentfa332d64d06a61d0b064c34757a78170bc69e6bd (diff)
downloadkoffice-9fa1a9ed2f99b81348c5636b1bd4d82dba553e1e.tar.gz
koffice-9fa1a9ed2f99b81348c5636b1bd4d82dba553e1e.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 8bc8b24757e1cdf11d60bbeea3c7eaac7e4b8dd0)
Diffstat (limited to 'kexi/plugins/scripting')
-rw-r--r--kexi/plugins/scripting/kexiapp/kexiappmodule.cpp2
-rw-r--r--kexi/plugins/scripting/kexidb/kexidbmodule.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/kexi/plugins/scripting/kexiapp/kexiappmodule.cpp b/kexi/plugins/scripting/kexiapp/kexiappmodule.cpp
index 9a1c73d7..ffdfebb9 100644
--- a/kexi/plugins/scripting/kexiapp/kexiappmodule.cpp
+++ b/kexi/plugins/scripting/kexiapp/kexiappmodule.cpp
@@ -37,7 +37,7 @@ extern "C"
* Exported an loadable function as entry point to use
* the \a KexiAppModule.
*/
- Kross::Api::Object* KDE_EXPORT init_module(Kross::Api::Manager* manager)
+ Kross::Api::Object* TDE_EXPORT init_module(Kross::Api::Manager* manager)
{
return new Kross::KexiApp::KexiAppModule(manager);
}
diff --git a/kexi/plugins/scripting/kexidb/kexidbmodule.cpp b/kexi/plugins/scripting/kexidb/kexidbmodule.cpp
index 91472a1f..f9dcf841 100644
--- a/kexi/plugins/scripting/kexidb/kexidbmodule.cpp
+++ b/kexi/plugins/scripting/kexidb/kexidbmodule.cpp
@@ -36,7 +36,7 @@ extern "C"
* Exported an loadable function as entry point to use
* the \a KexiDBModule.
*/
- Kross::Api::Object* KDE_EXPORT init_module(Kross::Api::Manager* manager)
+ Kross::Api::Object* TDE_EXPORT init_module(Kross::Api::Manager* manager)
{
return new Kross::KexiDB::KexiDBModule(manager);
}