summaryrefslogtreecommitdiff
path: root/sc/inc/rangenam.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/rangenam.hxx')
-rw-r--r--sc/inc/rangenam.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/rangenam.hxx b/sc/inc/rangenam.hxx
index ae3cefa810c2..728164a54d6d 100644
--- a/sc/inc/rangenam.hxx
+++ b/sc/inc/rangenam.hxx
@@ -67,8 +67,8 @@ public:
};
private:
- OUString aName;
- OUString aUpperName; // #i62977# for faster searching (aName is never modified after ctor)
+ OUString const aName;
+ OUString const aUpperName; // #i62977# for faster searching (aName is never modified after ctor)
OUString maNewName; ///< used for formulas after changing names in the dialog
std::unique_ptr<ScTokenArray>
pCode;
@@ -81,8 +81,8 @@ private:
// max row and column to use for wrapping of references. If -1 use the
// application's default.
- SCROW mnMaxRow;
- SCCOL mnMaxCol;
+ SCROW const mnMaxRow;
+ SCCOL const mnMaxCol;
void CompileRangeData( const OUString& rSymbol, bool bSetError );
void InitCode();