diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-01-03 17:19:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-01-03 23:21:43 +0100 |
commit | 2dcd8b7d9faa0c7e144f71f43053e5abbea06108 (patch) | |
tree | 872e4d39a772557fe244130d07598e4114560c9d /sc | |
parent | 192152f68488e0c9783782951c99080de409ef64 (diff) |
UBSan now needs RTTI of some Library_sc types in Library_scfilt
...after 4992d61600536fe14b97b718dbb11f00e936c6a9 "tdf#129228 speedup opening of
xlsx file with lots of comments" added
> ScTableSheetObj* pAnnosSupp = static_cast<ScTableSheetObj*>(getSheet().get());
> rtl::Reference<ScAnnotationsObj> xAnnos = static_cast<ScAnnotationsObj*>(pAnnosSupp->getAnnotations().get());
to Comment::finalizeImport in sc/source/filter/oox/commentsbuffer.cxx. (See
<https://ci.libreoffice.org/job/lo_ubsan/1493/>).
Change-Id: Ia8a99297151abfe4f052fbf46504795db1ba87b7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86192
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/cellsuno.hxx | 3 | ||||
-rw-r--r-- | sc/inc/docuno.hxx | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sc/inc/cellsuno.hxx b/sc/inc/cellsuno.hxx index 96d7000cef67..0fd9bbf991cf 100644 --- a/sc/inc/cellsuno.hxx +++ b/sc/inc/cellsuno.hxx @@ -25,6 +25,7 @@ #include <formula/grammar.hxx> #include <rtl/ref.hxx> +#include <sal/types.h> #include <tools/link.hxx> #include <svl/lstner.hxx> #include <svl/listener.hxx> @@ -763,7 +764,7 @@ public: virtual sal_Int16 SAL_CALL resetActionLocks() override; }; -class ScTableSheetObj : public ScCellRangeObj, +class SAL_DLLPUBLIC_RTTI ScTableSheetObj : public ScCellRangeObj, public css::sheet::XSpreadsheet, public css::container::XNamed, public css::sheet::XSheetPageBreak, diff --git a/sc/inc/docuno.hxx b/sc/inc/docuno.hxx index f2adcda7a80f..51dad2b24ce7 100644 --- a/sc/inc/docuno.hxx +++ b/sc/inc/docuno.hxx @@ -21,6 +21,8 @@ #define INCLUDED_SC_INC_DOCUNO_HXX #include "address.hxx" + +#include <sal/types.h> #include <sfx2/sfxbasemodel.hxx> #include <svl/lstner.hxx> #include <svx/fmdmod.hxx> @@ -654,7 +656,7 @@ public: virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override; }; -class ScAnnotationsObj final : public cppu::WeakImplHelper< +class SAL_DLLPUBLIC_RTTI ScAnnotationsObj final : public cppu::WeakImplHelper< css::sheet::XSheetAnnotations, css::container::XEnumerationAccess, css::lang::XServiceInfo>, |