diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-11-25 17:47:25 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-26 06:42:52 +0100 |
commit | f26c2f2151c3a8c667740bf8b3e06e34e9781ba5 (patch) | |
tree | 4fbca72c79f8256dc60cbfcc969fd1c34da71036 /sd | |
parent | 685a0c2de4e12cde691ebff63b0f2348a7d68b58 (diff) |
CppunitTest_sd_dialogs_test still needs DrawView RTTI
After 5f520f757774db17ea4e33d34c724cf2af3adcba "make some classes
module-private", it failed with
> [LNK] CppunitTest/libtest_sd_dialogs_test.so
> sd/qa/unit/dialogs-test.cxx:160: error: undefined reference to 'typeinfo for sd::DrawView'
> collect2: error: ld returned 1 exit status
Change-Id: I913c40840596baf5358ea5acc4082a898ac4548e
Reviewed-on: https://gerrit.libreoffice.org/83703
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/inc/drawview.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/inc/drawview.hxx b/sd/source/ui/inc/drawview.hxx index 34360c61c772..2d41de1af250 100644 --- a/sd/source/ui/inc/drawview.hxx +++ b/sd/source/ui/inc/drawview.hxx @@ -30,7 +30,7 @@ class DrawViewShell; /** * Derivative of ::sd::View; contains also a pointer to the document */ -class DrawView : public ::sd::View +class SD_DLLPUBLIC DrawView : public ::sd::View { public: |