summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-30 11:49:32 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-30 12:17:34 +0200
commiteb08f19c73265e51f9192e65989be06277aef3dc (patch)
tree34c972ad5028cd5d1c53115c56efe0ffe378b6d9
parentb0f759560b19b036751e8e557562de952c3da1af (diff)
loplugin:constparam
Change-Id: I81055d60c3c5d35e46e7d0c3a451e93e42d86783
-rw-r--r--sc/source/core/data/grouptokenconverter.cxx2
-rw-r--r--sc/source/core/inc/grouptokenconverter.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/grouptokenconverter.cxx b/sc/source/core/data/grouptokenconverter.cxx
index 0418cf98fc3b..98ba8cdfa9b1 100644
--- a/sc/source/core/data/grouptokenconverter.cxx
+++ b/sc/source/core/data/grouptokenconverter.cxx
@@ -84,7 +84,7 @@ SCROW ScGroupTokenConverter::trimLength(SCTAB nTab, SCCOL nCol1, SCCOL nCol2, SC
}
ScGroupTokenConverter::ScGroupTokenConverter(
- ScTokenArray& rGroupTokens, ScDocument& rDoc, ScFormulaCell& rCell, const ScAddress& rPos) :
+ ScTokenArray& rGroupTokens, ScDocument& rDoc, const ScFormulaCell& rCell, const ScAddress& rPos) :
mrGroupTokens(rGroupTokens),
mrDoc(rDoc),
mrCell(rCell),
diff --git a/sc/source/core/inc/grouptokenconverter.hxx b/sc/source/core/inc/grouptokenconverter.hxx
index 43b3ac3f6fd5..66583da9edc1 100644
--- a/sc/source/core/inc/grouptokenconverter.hxx
+++ b/sc/source/core/inc/grouptokenconverter.hxx
@@ -30,7 +30,7 @@ class SC_DLLPUBLIC ScGroupTokenConverter
SCROW trimLength(SCTAB nTab, SCCOL nCol1, SCCOL nCol2, SCROW nRow, SCROW nRowLen);
public:
- ScGroupTokenConverter(ScTokenArray& rGroupTokens, ScDocument& rDoc, ScFormulaCell& rCell, const ScAddress& rPos);
+ ScGroupTokenConverter(ScTokenArray& rGroupTokens, ScDocument& rDoc, const ScFormulaCell& rCell, const ScAddress& rPos);
bool convert( const ScTokenArray& rCode, sc::FormulaLogger::GroupScope& rScope );
};