sc/inc/attrib.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit b66c79f6608cbd1e0d477299eb16ba685b0abf98 Author: Miklos Vajna <[email protected]> AuthorDate: Fri May 19 10:44:45 2023 +0200 Commit: Andras Timar <[email protected]> CommitDate: Thu May 25 09:08:02 2023 +0200 CppunitTest_sc_dataprovider: fix sanitizers failure Type info for ScCondFormatItem is now needed, see <https://ci.libreoffice.org/job/lo_ubsan/2782/console>. (cherry picked from commit d0a91310d481f4219608dedf481bd9824da97b2c) [ On this branch, online.git 'make run' fails with: preload: xsec_xmlsec xmlscript xof xo ucpchelp1 wpftwriter wpftcalc wpftimpress wpftdraw writerfilter vcl msforms uui ucptdoc1 ucppkg1 ucpfile1 ucpexpand1 ucpcmis1 ucb1 cached1 tk unordf unoxml vbaswobj swd sw srtrs1 svxcore ucpdav1 svx svt svl passwordcontainer svgio smd sm localebe1 desktopbe1 sfx pdfimport PresentationMinimizer sd vbaevents stringresource scriptframe protocolhandler dlgprov basprov date analysis vbaobjwarn:sal.osl:12664:12664:sal/osl/unx/module.cxx:152: dlopen(/home/vmiklos/git/libreoffice/co-23.05-san/instdir/program/libscfiltlo.so, 1): /home/vmiklos/git/libreoffice/co-23.05-san/instdir/program/libscfiltlo.so: undefined symbol: _ZTI16ScCondFormatItem warn:sal.osl:12664:12664:sal/osl/unx/module.cxx:152: dlopen(libscfiltlo.so, 1): libscfiltlo.so: cannot open shared object file: No such file or directory /home/vmiklos/git/libreoffice/co-23.05-san/sc/source/ui/docshell/impex.cxx:2697:12: runtime error: reference binding to null pointer of type 'ScFormatFilterPlugin' but the root cause seems to be the same. ] Change-Id: I7cd7762bbd9f961e78d6f2fa98a808ff88a82269 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152257 Reviewed-by: Andras Timar <[email protected]> Tested-by: Andras Timar <[email protected]> diff --git a/sc/inc/attrib.hxx b/sc/inc/attrib.hxx index 6a27d2e840d2..dc394dfb1c08 100644 --- a/sc/inc/attrib.hxx +++ b/sc/inc/attrib.hxx @@ -269,7 +269,7 @@ private: typedef o3tl::sorted_vector<sal_uInt32> ScCondFormatIndexes; -class ScCondFormatItem final : public SfxPoolItem +class SAL_DLLPUBLIC_RTTI ScCondFormatItem final : public SfxPoolItem { public: explicit ScCondFormatItem();
