summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-20 10:08:09 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-10-20 10:57:16 +0100
commit3661bcded83eecba762ec7c078c6e23acac85abb (patch)
tree171f4afa5da323894fc2005463d81fb6aaf9e924 /filter
parentd615d83381a0830a815fe2879ce761f1b00b04e9 (diff)
coverity#703957 Unchecked return value
Change-Id: If9e3e7297b1539c93902895c50af3fb8f6c83a76
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/escherex.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx
index 96c114a6be4b..afcc626d3ba2 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -1249,13 +1249,13 @@ bool EscherPropertyContainer::CreateShapeProperties( const ::com::sun::star::uno
bool bVal = false;
::com::sun::star::uno::Any aAny;
sal_uInt32 nShapeAttr = 0;
- EscherPropertyValueHelper::GetPropertyValue( aAny, aXPropSet, OUString( "Visible" ), true );
+ (void)EscherPropertyValueHelper::GetPropertyValue( aAny, aXPropSet, OUString( "Visible" ), true );
if ( aAny >>= bVal )
{
if ( !bVal )
nShapeAttr |= 0x20002; // set fHidden = true
}
- EscherPropertyValueHelper::GetPropertyValue( aAny, aXPropSet, OUString( "Printable" ), true );
+ (void)EscherPropertyValueHelper::GetPropertyValue( aAny, aXPropSet, OUString( "Printable" ), true );
if ( aAny >>= bVal )
{
if ( !bVal )