diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-08-27 13:40:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-08-27 21:42:41 +0200 |
commit | 6b8e3ab384efb0e8a1d2f49eb8e5b306ceb640bc (patch) | |
tree | 20b6509aa909e6f62f81a4506f40652f2d7e655e | |
parent | ae8e1ad2e322cfa9522f793edc961203e28c1f22 (diff) |
coverity#1416886 Unchecked dynamic_cast
Change-Id: I5a6a4ec99449d70d2dd812cf5520900e4d0d3d14
Reviewed-on: https://gerrit.libreoffice.org/41603
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sw/qa/extras/ooxmlexport/ooxmlexport9.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx index f381de9c9032..ba35ee12fdc8 100644 --- a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx +++ b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx @@ -1000,6 +1000,7 @@ DECLARE_OOXMLEXPORT_TEST(testWatermarkLayer, "watermark-layer.docx") // Watermark was not visible if page background was set. SwXTextDocument* pTextDoc = dynamic_cast<SwXTextDocument*>(mxComponent.get()); + CPPUNIT_ASSERT(pTextDoc); SdrPage* pPage = pTextDoc->GetDocShell()->GetDoc()->getIDocumentDrawModelAccess().GetDrawModel()->GetPage(0); SdrObject* pObject = pPage->GetObj(0); |