summaryrefslogtreecommitdiffstats
path: root/kate
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-12-31 12:15:57 +0100
committerSlávek Banko <slavek.banko@axis.cz>2021-12-31 12:15:57 +0100
commit762bfec2c849854fc0247acf8d2f107c27b17940 (patch)
treedddce1b148241162ab70667fcd28cd421c7c8f14 /kate
parentc3d0b8b21f6a174cd45213b6c3dcd85b203aafaa (diff)
downloadtdeaddons-762bfec2c849854fc0247acf8d2f107c27b17940.tar.gz
tdeaddons-762bfec2c849854fc0247acf8d2f107c27b17940.zip
Add option WITH_GCC_VISIBILITY.
Fix building with hidden visibility. Add missing definitions to config.h.cmake. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'kate')
-rw-r--r--kate/filetemplates/plugin/filetemplates.cpp10
-rw-r--r--kate/katesort/plugin_sort.cpp10
-rw-r--r--kate/tabbarextension/plugin_katetabbarextension.cpp10
3 files changed, 15 insertions, 15 deletions
diff --git a/kate/filetemplates/plugin/filetemplates.cpp b/kate/filetemplates/plugin/filetemplates.cpp
index 952ee07..6604461 100644
--- a/kate/filetemplates/plugin/filetemplates.cpp
+++ b/kate/filetemplates/plugin/filetemplates.cpp
@@ -81,11 +81,11 @@ class PluginView : public KXMLGUIClient
extern "C"
{
- void* init_katefiletemplates()
- {
- TDEGlobal::locale()->insertCatalogue("katefiletemplates");
- return new KatePluginFactory;
- }
+ KDE_EXPORT void* init_katefiletemplates()
+ {
+ TDEGlobal::locale()->insertCatalogue("katefiletemplates");
+ return new KatePluginFactory;
+ }
}
KatePluginFactory::KatePluginFactory()
diff --git a/kate/katesort/plugin_sort.cpp b/kate/katesort/plugin_sort.cpp
index 904d62e..fa55734 100644
--- a/kate/katesort/plugin_sort.cpp
+++ b/kate/katesort/plugin_sort.cpp
@@ -38,11 +38,11 @@ class PluginView : public KXMLGUIClient
extern "C"
{
- void* init_katesortplugin()
- {
- TDEGlobal::locale()->insertCatalogue("katesort");
- return new KatePluginFactory;
- }
+ KDE_EXPORT void* init_katesortplugin()
+ {
+ TDEGlobal::locale()->insertCatalogue("katesort");
+ return new KatePluginFactory;
+ }
}
KatePluginFactory::KatePluginFactory()
diff --git a/kate/tabbarextension/plugin_katetabbarextension.cpp b/kate/tabbarextension/plugin_katetabbarextension.cpp
index 462161b..4f0682c 100644
--- a/kate/tabbarextension/plugin_katetabbarextension.cpp
+++ b/kate/tabbarextension/plugin_katetabbarextension.cpp
@@ -55,11 +55,11 @@ class PluginView : public KXMLGUIClient
extern "C"
{
- void* init_libkatetabbarextensionplugin()
- {
- TDEGlobal::locale()->insertCatalogue("katetabbarextension");
- return new KatePluginFactory;
- }
+ KDE_EXPORT void* init_libkatetabbarextensionplugin()
+ {
+ TDEGlobal::locale()->insertCatalogue("katetabbarextension");
+ return new KatePluginFactory;
+ }
}
TQObject* KatePluginFactory::createObject(TQObject *parent,