diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-08-29 17:44:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-08-29 17:44:36 +0200 |
commit | d5ed3cd6dbd22bb18542778f1c48f4d5b3ae0f95 (patch) | |
tree | d04676def5d395c3b9be591155b442c36f96ced3 /emfio/inc | |
parent | 2a55916a929524fd4f9e72bb1d7968d73ddc25f4 (diff) |
Make WinMtfFontStyle's base class EMFIO_DLLPUBLIC, too
...otherwise the dynamic_cast<WinMtfFontStyle*> in MtfTools::SelectObject
(emfio/source/reader/mtftools.cxx) would not work on macOS in
CppunitTest_emfio_wmf
Change-Id: I5c361544fd273bdb65a4b83c7d694bae714815f5
Diffstat (limited to 'emfio/inc')
-rw-r--r-- | emfio/inc/mtftools.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emfio/inc/mtftools.hxx b/emfio/inc/mtftools.hxx index fb8dd02a2550..6eb9367bb3e8 100644 --- a/emfio/inc/mtftools.hxx +++ b/emfio/inc/mtftools.hxx @@ -295,7 +295,7 @@ namespace emfio void AddPolyPolygon(const tools::PolyPolygon& rPolyPolygon); }; - struct GDIObj + struct EMFIO_DLLPUBLIC GDIObj { virtual ~GDIObj() = default; // Polymorphic base class }; |