[Libreoffice-commits] core.git: oox/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Fri Jul 19 14:19:12 UTC 2019
oox/source/ppt/timenodelistcontext.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 8e907dcf11d4e5b941bc5dc6e427485673ea4487
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jul 18 11:10:40 2019 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Fri Jul 19 16:18:28 2019 +0200
cid#1448460 Unchecked return value
Change-Id: I5984923062338b54e016e46a8f12be72deff6822
Reviewed-on: https://gerrit.libreoffice.org/75895
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
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;
}
More information about the Libreoffice-commits
mailing list