Date: prev next · Thread: first prev next last
2018 Archives by date, by thread · List index


On 24/09/2018 14:24, Regina Henschel wrote:
void SdMiscTest::testTdf119956()
{
    sd::DrawDocShellRef xDocShRef = Load(m_directories.getURLFromSrc("/sd/qa/unit/data/tdf119956.odg"), ODG);
     CPPUNIT_ASSERT_MESSAGE( "Failed to load file.", xDocShRef.is());

    sd::DrawViewShell* pDrawViewShell = dynamic_cast<sd::DrawViewShell* >(xDocShRef->GetViewShell());     CPPUNIT_ASSERT_MESSAGE( "No dynamic_cast to sd::DrawViewShell", pDrawViewShell);

     pDrawViewShell->ChangeEditMode(EditMode::MasterPage,true);
     pDrawViewShell->ResetActualLayer();
}

The line pDrawViewShell->ResetActualLayer(); does not work. On make sd.check I get the error:

[build LNK] CppunitTest/test_sd_misc_tests.dll
   Creating library D:/Build_localizedLayernames/core/workdir/LinkTarget/CppunitTest/itest_sd_misc_tests.lib and object D:/Build_localizedLayernames/core/workdir/LinkTarget/CppunitTest/itest_sd_misc_tests.exp misc-tests.o : error LNK2019: unresolved external symbol "public: void __cdecl sd::DrawViewShell::ResetActualLayer(void)" (?ResetActualLayer@DrawViewShell@sd@@QEAAXXZ) referenced in function "public: void __cdecl SdMiscTest::testTdf119956(void)" (?testTdf119956@SdMiscTest@@QEAAXXZ) D:/Build_localizedLayernames/core/workdir/LinkTarget/CppunitTest/test_sd_misc_tests.dll : fatal error LNK1120: 1 unresolved externals make[1]: *** [D:/Build_localizedLayernames/core/solenv/gbuild/LinkTarget.mk:636: D:/Build_localizedLayernames/core/workdir/LinkTarget/CppunitTest/test_sd_misc_tests.dll] Error 96

Similar for other methods, that use the LayerTabBar, e.g. GetLayerTabControl() or GetTabLayerCount(). There are no problems in the other lines, when I remove ResetActualLayer().

sd::DrawViewShell::ResetActualLayer is not exported from Library_sd, hence the test code can't call it. One hacky solution is to mark that function as SD_DLLPUBLIC in sd/source/ui/inc/DrawViewShell.hxx (probably with a comment that it is only exported for the needs of test code).

(pDrawViewShell->ChangeEditMode calls a virtual method via vtable, so doesn't care if the called function isn't actually exported.)

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.