aboutsummaryrefslogtreecommitdiff
path: root/source/bn
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2018-04-24 14:35:45 +0200
committerAndras Timar <andras.timar@collabora.com>2018-04-24 14:35:45 +0200
commite3802bb90081c3cc63ca8ec9726772d8e42299b0 (patch)
tree10d0e282bd237b7dd9d70bba036213837bf5db9d /source/bn
parent6e357f3555df07d206b2967816182d2f9b645b80 (diff)
Updated Slovenian translation
Change-Id: I999a9807259234ebfd080b070035ea5bcbc4b170
Diffstat (limited to 'source/bn')
0 files changed, 0 insertions, 0 deletions
ndo-rework'>feature/sw-delete-undo-rework LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sw/inc/unotext.hxx
AgeCommit message (Collapse)Author
2023-01-19XUnoTunnel->dynamic_cast for SwXFrameNoel Grandin
Change-Id: I48fd10781e7f09b37b6b0000f68456e8194e6d7a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145761 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-07-21More RTTI needed by UBSan nowStephan Bergmann
Presumably after 7a076dd9a6d11aef547f657f525ec0c27a50db58 "use more concrete UNO classes in writer", CppunitTest_chart2_export started to fail with > [_RUN_____] Chart2ExportTest::testStockChart [...] > warn:sal.osl:3513253:3513253:sal/osl/unx/module.cxx:152: dlopen(instdir/program/libmswordlo.so, 257): instdir/program/libmswordlo.so: undefined symbol: _ZTI12SwXTextFrame [...] > unknown:0:Chart2ExportTest::testStockChart An uncaught exception of type com.sun.star.io.IOException - SfxBaseModel::impl_store <file:///tmp/Chart2ExportTest__testStockChart_4uwve4.tmp> failed: 0xc10(Error Area:Io Class:Write Code:16) at sfx2/source/doc/sfxbasemodel.cxx:3205 at sfx2/source/doc/sfxbasemodel.cxx:1783 etc. (And marking only SwXTextFrame as SAL_DLLPUBLIC_RTTI would then cause > sw/source/core/unocore/unoframe.cxx:1271:18: error: dynamic_cast from 'com::sun::star::uno::XInterface' with default type visibility to 'SwXTextFrame' with default type visibility [loplugin:dyncastvisibility] > xFrame = dynamic_cast<NameLookupIsHard*>(pFrameFormat->GetXObject().get().get()); // cached? > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > workdir/UnoApiHeadersTarget/udkapi/normal/com/sun/star/uno/XInterface.hdl:15:40: note: base class 'com::sun::star::uno::XInterface' with default type visibility defined here [loplugin:dyncastvisibility] > class SAL_NO_VTABLE SAL_DLLPUBLIC_RTTI XInterface > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~ > sw/inc/unotext.hxx:44:7: note: intermediary class 'SwXText' with hidden type visibility defined here [loplugin:dyncastvisibility] > class SwXText > ~~~~~~^~~~~~~ > sw/inc/unoframe.hxx:47:7: note: intermediary class 'SwXFrame' with hidden type visibility defined here [loplugin:dyncastvisibility] > class SwXFrame : public cppu::WeakImplHelper > ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > sw/inc/unoframe.hxx:174:26: note: derived class 'SwXTextFrame' with default type visibility defined here [loplugin:dyncastvisibility] > class SAL_DLLPUBLIC_RTTI SwXTextFrame final : public SwXTextFrameBaseClass, > ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ in turn.) Change-Id: I5535853885a471d846458d3c6baf538ef047546b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137300 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>