diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-08-13 07:29:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-08-13 13:25:51 +0200 |
commit | 509aa9e70535ab9b0e317983b1ca0f0423ce70b6 (patch) | |
tree | cc98215a250711d39c24bd54000c852ea35cbb5e | |
parent | c91ae1ec1ae239a3b1438398325b48b04d8a9d82 (diff) |
UBSan CppunitTest_sw_writerfilter_misc needs the SwXTableRows now
...presumably since 883febd60593e8a3c0c85c9859006cc0a35b10c2 "use more concrete
UNO type in writerfilter",
> 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: _ZTI12SwXTableRows"
(<https://ci.libreoffice.org//job/lo_ubsan/3273/>)
Change-Id: I856ff7e2d7f31c83ad75b301caf4f8084f3e19a5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171806
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
-rw-r--r-- | sw/inc/unotbl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/unotbl.hxx b/sw/inc/unotbl.hxx index de6a1e3d833a..d42e9460570e 100644 --- a/sw/inc/unotbl.hxx +++ b/sw/inc/unotbl.hxx @@ -423,7 +423,7 @@ public: }; /// UNO API wrapper for SwTableLines. -class SwXTableRows final : public cppu::WeakImplHelper +class SAL_DLLPUBLIC_RTTI SwXTableRows final : public cppu::WeakImplHelper < css::table::XTableRows, css::lang::XServiceInfo |