diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-11 20:42:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-12 16:39:54 +0100 |
commit | b8c9366803a4183d3c2088b47ddf097b72e191f5 (patch) | |
tree | 51cc23c1acb87a5c1aba94ed26c55a069746efe7 /sw | |
parent | 1119e4a98c4946ae65dfe8891e42b994148c7694 (diff) |
coverity#735337 Unchecked return value
Change-Id: Ib1f27e51934d7deb4f30d74409554dfeb14928ff
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/frmdlg/frmpage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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() || |