diff options
author | Eike Rathke <erack@redhat.com> | 2014-01-21 17:46:32 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-01-22 01:09:11 +0100 |
commit | 57b8e7c96bafb97f881b7db73624693392e13540 (patch) | |
tree | bba34b2bcefbf73ef7f994948c38ee4e7cec7136 /sc/inc/attarray.hxx | |
parent | 5f89d247e3dac99c297066d404c24dea3312fa51 (diff) |
some clean-up of 6b8704d974abd4ab7fb58036a961fa0b7136aaa7
const methods, removed this->..., naming
Change-Id: I0db1cf445936bab04003062bc59ce0a0c2fc8b71
Diffstat (limited to 'sc/inc/attarray.hxx')
-rw-r--r-- | sc/inc/attarray.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/attarray.hxx b/sc/inc/attarray.hxx index c2789b3013f7..2d52279d13c7 100644 --- a/sc/inc/attarray.hxx +++ b/sc/inc/attarray.hxx @@ -189,9 +189,9 @@ public: void DeleteHardAttr( SCROW nStartRow, SCROW nEndRow ); /* i123909: Pre-calculate needed memory, and pre-reserve enough memory */ - bool Reserve( SCSIZE nCount ); + bool Reserve( SCSIZE nReserve ); SCSIZE Count() const { return nCount; } - SCSIZE Count( SCROW nRw1, SCROW nRw2 ); + SCSIZE Count( SCROW nRow1, SCROW nRow2 ) const; }; // Iterator for attributes |