From b8c9366803a4183d3c2088b47ddf097b72e191f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Sat, 11 Oct 2014 20:42:03 +0100 Subject: [PATCH] coverity#735337 Unchecked return value Change-Id: Ib1f27e51934d7deb4f30d74409554dfeb14928ff --- sw/source/ui/frmdlg/frmpage.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/source/ui/frmdlg/frmpage.cxx b/sw/source/ui/frmdlg/frmpage.cxx index cc148dc046a9..740ed1c68fb5 100644 --- a/sw/source/ui/frmdlg/frmpage.cxx +++ b/sw/source/ui/frmdlg/frmpage.cxx @@ -2567,7 +2567,7 @@ IMPL_LINK_NOARG(SwGrfExtPage, BrowseHdl) m_pBmpWin->MirrorVert(false); Graphic aGraphic; - GraphicFilter::LoadGraphic( pGrfDlg->GetPath(), aEmptyOUStr, aGraphic ); + (void)GraphicFilter::LoadGraphic(pGrfDlg->GetPath(), OUString(), aGraphic); m_pBmpWin->SetGraphic(aGraphic); bool bEnable = GRAPHIC_BITMAP == aGraphic.GetType() ||