diff options
author | Slávek Banko <[email protected]> | 2021-12-31 12:15:57 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-12-31 12:21:45 +0100 |
commit | 5363fd55b8fed6a22d63017ff110ddd7dc619c1a (patch) | |
tree | 800c4cdcf14dc062f6a0d70746d04fcf508bc16e /noatun-plugins/noatunmadness/madness.cpp | |
parent | af0617f88ea621a3cd8de1c9814f53da4afbefaa (diff) | |
download | tdeaddons-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/noatunmadness/madness.cpp')
-rw-r--r-- | noatun-plugins/noatunmadness/madness.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noatun-plugins/noatunmadness/madness.cpp b/noatun-plugins/noatunmadness/madness.cpp index 32014f6..07a3581 100644 --- a/noatun-plugins/noatunmadness/madness.cpp +++ b/noatun-plugins/noatunmadness/madness.cpp @@ -21,10 +21,10 @@ RMS's novel that I'm supposed to put at the top of every story. He's insane. extern "C" { -Plugin *create_plugin() -{ - return new Madness(); -} + KDE_EXPORT Plugin* create_plugin() + { + return new Madness(); + } } Madness::Madness() |