[Libreoffice-commits] core.git: filter/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Fri Aug 21 09:04:04 UTC 2020


 filter/source/msfilter/escherex.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9482c42adfab31b176a9f283e6af9d453ced4521
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Aug 20 20:20:23 2020 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Fri Aug 21 11:03:19 2020 +0200

    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 at redhat.com>

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;


More information about the Libreoffice-commits mailing list