diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-08-13 23:47:58 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-08-13 23:48:30 -0400 |
commit | 05f5191de3895b5c6b263d6dfba63f494e5e4a5b (patch) | |
tree | 68b5c4e47b748a3a35067bce81b3baf12d9aeb82 /sc/inc | |
parent | c4d26f327605b77c8395bdb512d8ddcd8c11bfd1 (diff) |
Do the same when deleting rows.
Change-Id: Ib1deab33a8771e196d0520bae872eb0d492c913e
Diffstat (limited to 'sc/inc')
-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 fa6247cb6312..5e3f9598863f 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -384,8 +384,8 @@ public: bool TestInsertRow( SCCOL nStartCol, SCCOL nEndCol, SCROW nStartRow, SCSIZE nSize ) const; void InsertRow( SCCOL nStartCol, SCCOL nEndCol, SCROW nStartRow, SCSIZE nSize ); - void DeleteRow( SCCOL nStartCol, SCCOL nEndCol, SCROW nStartRow, SCSIZE nSize, - bool* pUndoOutline = NULL ); + void DeleteRow( + const sc::ColumnSet& rRegroupCols, SCCOL nStartCol, SCCOL nEndCol, SCROW nStartRow, SCSIZE nSize, bool* pUndoOutline = NULL ); bool TestInsertCol( SCROW nStartRow, SCROW nEndRow, SCSIZE nSize ) const; void InsertCol( SCCOL nStartCol, SCROW nStartRow, SCROW nEndRow, SCSIZE nSize ); |