From b435ca9e6f826704314f8a437c352aa799767bd4 Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Tue, 27 Jan 2015 14:50:36 +0100 Subject: Resolves: tdf#88786 correct matrix sub operation Change-Id: Ib5ce2ffe17cc34e0b3f04ebc06ea392707b7b9e6 --- sc/source/core/tool/interpr5.cxx | 2 +- sc/source/core/tool/scmatrix.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'sc/source/core/tool') diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx index fe87c0457eed..b6d616e11619 100644 --- a/sc/source/core/tool/interpr5.cxx +++ b/sc/source/core/tool/interpr5.cxx @@ -1297,7 +1297,7 @@ void ScInterpreter::CalculateAddSub(bool _bSub) } else { - pMat->SubAddOp(true, fVal, aString, *pResMat); + pMat->SubAddOp(false, -fVal, aString, *pResMat); } PushMatrix(pResMat); } diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx index bf2f1632b6d2..4402002593f6 100644 --- a/sc/source/core/tool/scmatrix.cxx +++ b/sc/source/core/tool/scmatrix.cxx @@ -2553,12 +2553,12 @@ public: double operator()(double nVal) const { - return nVal - mnVal; + return mnVal - nVal; } double operator()(bool bVal) const { - return (double)bVal - mnVal; + return mnVal - (double)bVal; } svl::SharedString operator()(const svl::SharedString&) const -- cgit v1.2.3