summaryrefslogtreecommitdiff
path: root/sc/inc/refhint.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/refhint.hxx')
-rw-r--r--sc/inc/refhint.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sc/inc/refhint.hxx b/sc/inc/refhint.hxx
index cfdcaa6ec40e..2e32519011a7 100644
--- a/sc/inc/refhint.hxx
+++ b/sc/inc/refhint.hxx
@@ -30,7 +30,7 @@ public:
};
private:
- Type meType;
+ Type const meType;
protected:
RefHint( Type eType );
@@ -49,8 +49,8 @@ public:
class RefMovedHint : public RefHint
{
- ScRange maRange;
- ScAddress maMoveDelta;
+ ScRange const maRange;
+ ScAddress const maMoveDelta;
const sc::RefUpdateContext& mrCxt;
public:
@@ -74,9 +74,9 @@ public:
class RefColReorderHint : public RefHint
{
const sc::ColRowReorderMapType& mrColMap;
- SCTAB mnTab;
- SCROW mnRow1;
- SCROW mnRow2;
+ SCTAB const mnTab;
+ SCROW const mnRow1;
+ SCROW const mnRow2;
public:
RefColReorderHint( const sc::ColRowReorderMapType& rColMap, SCTAB nTab, SCROW nRow1, SCROW nRow2 );
@@ -97,9 +97,9 @@ public:
class RefRowReorderHint : public RefHint
{
const sc::ColRowReorderMapType& mrRowMap;
- SCTAB mnTab;
- SCCOL mnCol1;
- SCCOL mnCol2;
+ SCTAB const mnTab;
+ SCCOL const mnCol1;
+ SCCOL const mnCol2;
public:
RefRowReorderHint( const sc::ColRowReorderMapType& rRowMap, SCTAB nTab, SCCOL nCol1, SCCOL nCol2 );