diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 11:10:40 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-19 16:18:28 +0200 |
commit | 8e907dcf11d4e5b941bc5dc6e427485673ea4487 (patch) | |
tree | 7a105cfb68eec5619102a06658aa57f210152da5 /oox | |
parent | a5abe0fc4d435d3a7a7de8bf55ec74087fdd299a (diff) |
cid#1448460 Unchecked return value
Change-Id: I5984923062338b54e016e46a8f12be72deff6822
Reviewed-on: https://gerrit.libreoffice.org/75895
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/ppt/timenodelistcontext.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/ppt/timenodelistcontext.cxx b/oox/source/ppt/timenodelistcontext.cxx index 455c008dc16e..151adbcdf725 100644 --- a/oox/source/ppt/timenodelistcontext.cxx +++ b/oox/source/ppt/timenodelistcontext.cxx @@ -602,7 +602,7 @@ namespace oox { namespace ppt { if (!tav.msFormula.isEmpty()) { OUString sFormula = tav.msFormula; - convertMeasure(sFormula); + (void)convertMeasure(sFormula); aProps[NP_FORMULA] <<= sFormula; } |