diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-08-09 23:48:48 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-08-10 00:48:41 +0200 |
commit | 067dca9c3e70091850dbb1d374170c2fce708e84 (patch) | |
tree | 77b62c54178a95d508e81b10cc22600cea672e82 /sc/inc/table.hxx | |
parent | 8f92384031e332024ba39693b855bde67e033ac9 (diff) |
make more calc methods const
Change-Id: Ifc4775546ded8f524379946eb799dbbb314f7e8c
Diffstat (limited to 'sc/inc/table.hxx')
-rw-r--r-- | sc/inc/table.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index 2d073de675fc..f4709bf873da 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -426,7 +426,7 @@ public: void FindAreaPos( SCCOL& rCol, SCROW& rRow, ScMoveDirection eDirection ) const; void GetNextPos( SCCOL& rCol, SCROW& rRow, SCsCOL nMovX, SCsROW nMovY, - bool bMarked, bool bUnprotected, const ScMarkData& rMark ); + bool bMarked, bool bUnprotected, const ScMarkData& rMark ) const; void LimitChartArea( SCCOL& rStartCol, SCROW& rStartRow, SCCOL& rEndCol, SCROW& rEndRow ); @@ -813,7 +813,7 @@ private: sal_uLong nFillCount, FillDir eFillDir, ScProgress* pProgress ); bool ValidNextPos( SCCOL nCol, SCROW nRow, const ScMarkData& rMark, - bool bMarked, bool bUnprotected ); + bool bMarked, bool bUnprotected ) const; void AutoFormatArea(SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow, const ScPatternAttr& rAttr, sal_uInt16 nFormatNo); |