Kaydet (Commit) 6540350a authored tarafından Michael Meeks's avatar Michael Meeks

sc: constify GetCellGroup.

Change-Id: I50d47b19391c6b54570bc3982b8ec22563662983
üst 8400f109
...@@ -375,7 +375,7 @@ public: ...@@ -375,7 +375,7 @@ public:
* Turn a non-grouped cell into the top of a grouped cell. * Turn a non-grouped cell into the top of a grouped cell.
*/ */
ScFormulaCellGroupRef CreateCellGroup( SCROW nLen, bool bInvariant ); ScFormulaCellGroupRef CreateCellGroup( SCROW nLen, bool bInvariant );
ScFormulaCellGroupRef GetCellGroup(); ScFormulaCellGroupRef GetCellGroup() const;
void SetCellGroup( const ScFormulaCellGroupRef &xRef ); void SetCellGroup( const ScFormulaCellGroupRef &xRef );
CompareState CompareByTokenArray( ScFormulaCell& rOther ) const; CompareState CompareByTokenArray( ScFormulaCell& rOther ) const;
......
...@@ -3534,7 +3534,7 @@ ScFormulaCellGroupRef ScFormulaCell::CreateCellGroup( SCROW nLen, bool bInvarian ...@@ -3534,7 +3534,7 @@ ScFormulaCellGroupRef ScFormulaCell::CreateCellGroup( SCROW nLen, bool bInvarian
return mxGroup; return mxGroup;
} }
ScFormulaCellGroupRef ScFormulaCell::GetCellGroup() ScFormulaCellGroupRef ScFormulaCell::GetCellGroup() const
{ {
return mxGroup; return mxGroup;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment