summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-08-20 20:20:23 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-08-21 11:03:19 +0200
commit9482c42adfab31b176a9f283e6af9d453ced4521 (patch)
tree901c52981d1c640400c80c4bf486207144c760b5 /filter
parenta879b15d59618e73797ad779666f72cd040ff99a (diff)
cid#1466204 silence Unchecked return value
Change-Id: I9ca7fe0c01c965457367df002c7e27aaf688c6ce Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101089 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/escherex.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx
index 7bb27d496f3b..ec48fbbe3eec 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -694,7 +694,7 @@ void EscherPropertyContainer::CreateTextProperties(
uno::Any aTextWrap;
- EscherPropertyValueHelper::GetPropertyValue(aTextWrap, rXPropSet, "TextWrap", true);
+ (void)EscherPropertyValueHelper::GetPropertyValue(aTextWrap, rXPropSet, "TextWrap", true);
if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet, "TextWritingMode", true ) )
aAny >>= eWM;