summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-10-31 16:04:26 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-08-11 13:36:09 +0200
commit64f5fb6a4976004d4aa3ef983a61f8f20fa0098a (patch)
tree13ea23aecd8023e414ade45c4399b99fed826fc0 /sc
parent91e4d876098aaa7ac18a03e20cbc2789fba98041 (diff)
revert some consts to placate coverity Uncaught exceptions
Change-Id: I4d8cccd98a60efd928409514944d60d6ee5532d1 Reviewed-on: https://gerrit.libreoffice.org/77251 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/column3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 795f0fe34c15..5a65e5a2f306 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -2722,8 +2722,8 @@ class FormulaToValueHandler
{
struct Entry
{
- SCROW const mnRow;
- ScCellValue const maValue;
+ SCROW mnRow;
+ ScCellValue maValue;
Entry(SCROW nRow, double f) : mnRow(nRow), maValue(f) {}
Entry(SCROW nRow, const svl::SharedString& rStr) : mnRow(nRow), maValue(rStr) {}