diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-27 20:55:58 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-28 10:31:26 +0000 |
commit | 4779f2a76920c3f842bcd34cc2580fefe6fd1402 (patch) | |
tree | 135d92cf44f829b40cb3201d290d570dff833ba4 /sfx2 | |
parent | 17a0efcea50be5c9adf33639cfd47d9a90b2f742 (diff) |
coverity#704020 Unchecked return value
Change-Id: I0f8b49bb43d88549ba90db63ce7041e6d5e0fe64
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/docfile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx index d1909252fabd..580ecad2a145 100644 --- a/sfx2/source/doc/docfile.cxx +++ b/sfx2/source/doc/docfile.cxx @@ -436,7 +436,7 @@ Reference < XContent > SfxMedium::GetContent() const else if ( !pImp->m_aLogicName.isEmpty() ) aURL = GetURLObject().GetMainURL( INetURLObject::NO_DECODE ); if (!aURL.isEmpty() ) - ::ucbhelper::Content::create( aURL, xEnv, comphelper::getProcessComponentContext(), pImp->aContent ); + (void)::ucbhelper::Content::create( aURL, xEnv, comphelper::getProcessComponentContext(), pImp->aContent ); } } |