summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/tyler/tyler.cpp
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2021-12-31 12:15:57 +0100
committerSlávek Banko <[email protected]>2021-12-31 12:21:45 +0100
commit5363fd55b8fed6a22d63017ff110ddd7dc619c1a (patch)
tree800c4cdcf14dc062f6a0d70746d04fcf508bc16e /noatun-plugins/tyler/tyler.cpp
parentaf0617f88ea621a3cd8de1c9814f53da4afbefaa (diff)
downloadtdeaddons-5363fd55b8fed6a22d63017ff110ddd7dc619c1a.tar.gz
tdeaddons-5363fd55b8fed6a22d63017ff110ddd7dc619c1a.zip
Add option WITH_GCC_VISIBILITY.
Fix building with hidden visibility. Add missing definitions to config.h.cmake. Signed-off-by: Slávek Banko <[email protected]> (cherry picked from commit 762bfec2c849854fc0247acf8d2f107c27b17940)
Diffstat (limited to 'noatun-plugins/tyler/tyler.cpp')
-rw-r--r--noatun-plugins/tyler/tyler.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/noatun-plugins/tyler/tyler.cpp b/noatun-plugins/tyler/tyler.cpp
index 022f22a..d7690bb 100644
--- a/noatun-plugins/tyler/tyler.cpp
+++ b/noatun-plugins/tyler/tyler.cpp
@@ -12,10 +12,13 @@
#include <noatun/app.h>
#include <kdebug.h>
-extern "C" Plugin *create_plugin()
+extern "C"
{
- TDEGlobal::locale()->insertCatalogue("tyler");
- return new Tyler();
+ KDE_EXPORT Plugin* create_plugin()
+ {
+ TDEGlobal::locale()->insertCatalogue("tyler");
+ return new Tyler();
+ }
}
const int Tyler::bufferSize = 512;