sc/inc/datauno.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 2d9f4c0ba6f129714aa18b28ea6268b8cf902667 Author: Stephan Bergmann <[email protected]> AuthorDate: Sun Feb 8 22:52:54 2026 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Mon Feb 9 07:40:15 2026 +0100 UBSan apparently needs ScFilterDescriptorBase RTTI now ...presumably since 298058908dff3fbb0255f58c40c16f1cb9273006 "tdf#48140 Remove uno calls in autofilterbuffer.cxx", seeing e.g. CppunitTest_sc_functionlistobj fail with > [_RUN_____] sc_apitest::ScFunctionListObj::testGetElementType > warn:sal.osl:792064:792064:sal/osl/unx/module.cxx:103: dlopen(/home/sberg/lo/core/instdir/program/libscfiltlo.so, 1): /home/sberg/lo/core/instdir/program/libscfiltlo.so: undefined symbol: _ZTI22ScFilterDescriptorBase Change-Id: Ia5473e5997e0ec0aae993a3bf334c64b45707316 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198924 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/sc/inc/datauno.hxx b/sc/inc/datauno.hxx index e2cc09787b87..eb8364ac021d 100644 --- a/sc/inc/datauno.hxx +++ b/sc/inc/datauno.hxx @@ -261,7 +261,7 @@ public: // to uno, all three look the same -class ScFilterDescriptorBase : public cppu::WeakImplHelper< +class SAL_DLLPUBLIC_RTTI ScFilterDescriptorBase : public cppu::WeakImplHelper< css::sheet::XSheetFilterDescriptor, css::sheet::XSheetFilterDescriptor2, css::sheet::XSheetFilterDescriptor3,
