summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/interpr5.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-21 19:21:48 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-23 17:53:55 +0100
commitbaf08f569fb629211e4f9679bbb30fd61272dd46 (patch)
tree693f391f6b84a77c3bcaf5ed8f320d985a47d88e /sc/source/core/tool/interpr5.cxx
parentb4f666f2e677b05cab8395fe7972b45b15f60c3f (diff)
enum ScMatrix::Op is unnecessary
Change-Id: If4ae97b43f012f1770213d99407ffaadac05f9de Reviewed-on: https://gerrit.libreoffice.org/63756 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/core/tool/interpr5.cxx')
-rw-r--r--sc/source/core/tool/interpr5.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx
index b1c840e4fd94..2ab00919d6fa 100644
--- a/sc/source/core/tool/interpr5.cxx
+++ b/sc/source/core/tool/interpr5.cxx
@@ -1672,7 +1672,7 @@ void ScInterpreter::ScSumProduct()
return;
}
- pMat->MergeDoubleArray(aResArray, ScMatrix::Mul);
+ pMat->MergeDoubleArrayMultiply(aResArray);
}
double fSum = std::for_each(aResArray.begin(), aResArray.end(), SumValues()).getValue();