diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-22 11:26:35 +0900 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2024-03-22 13:16:07 +0000 |
commit | fdac3e6f16d6638d721fe2ba7e3f14a0903d465a (patch) | |
tree | 173401cb3268249497173596d9507cd0310b7389 /client/polyester.cc | |
parent | 8a2ee95b7119397c1d2f680b478ba8bb2dde7ac0 (diff) | |
download | tde-style-polyester-fdac3e6f16d6638d721fe2ba7e3f14a0903d465a.tar.gz tde-style-polyester-fdac3e6f16d6638d721fe2ba7e3f14a0903d465a.zip |
Fix symbol visibility to avoid runtime crash
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'client/polyester.cc')
-rwxr-xr-x | client/polyester.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/polyester.cc b/client/polyester.cc index edafebd..91c06fe 100755 --- a/client/polyester.cc +++ b/client/polyester.cc @@ -76,7 +76,7 @@ const char default_right[] = "HIAX"; static const uint TIMERINTERVAL = 25; // msec static const uint ANIMATIONSTEPS = 20; -extern "C" KDecorationFactory* create_factory() { +extern "C" KDE_EXPORT KDecorationFactory* create_factory() { return new polyester::polyesterFactory(); } |