sw/inc/unosett.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 1b7fc8a6e8906de0f8206d7416bc8201c8208f6c Author: Stephan Bergmann <[email protected]> AuthorDate: Tue Dec 2 16:01:54 2025 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Tue Dec 2 22:54:41 2025 +0100 UBSan apparently needs SwXLineNumberingProperties RTTI now ...seeing CppunitTest_sw_writerfilter_misc failing with > DynamicLibraryManagerException: "Failed to load dynamic library: /home/tdf/lode/jenkins/workspace/lo_ubsan/workdir/LinkTarget/CppunitTest/libtest_sw_writerfilter_misc.so /home/tdf/lode/jenkins/workspace/lo_ubsan/instdir/program/libsw_writerfilterlo.so: undefined symbol: _ZTI26SwXLineNumberingProperties" (<https://ci.libreoffice.org/job/lo_ubsan/3736/>) Change-Id: Iab88c2172dd3aabf80bc7e826576e16620ac2fb9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194928 Reviewed-by: Stephan Bergmann <[email protected]> Tested-by: Jenkins diff --git a/sw/inc/unosett.hxx b/sw/inc/unosett.hxx index 26b0d1aacd18..3a6d51a35644 100644 --- a/sw/inc/unosett.hxx +++ b/sw/inc/unosett.hxx @@ -100,7 +100,7 @@ public: void Invalidate() {m_pDoc = nullptr;} }; -class SwXLineNumberingProperties final : public cppu::WeakImplHelper +class SAL_DLLPUBLIC_RTTI SwXLineNumberingProperties final : public cppu::WeakImplHelper < css::beans::XPropertySet, css::lang::XServiceInfo
