diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-07-10 16:32:39 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-07-11 00:25:37 -0400 |
commit | 0797dd8714413f8319515df9831a86703b589558 (patch) | |
tree | cd12f739ef0ac620fa4b4eaa35f6d1f50a3ec97b /sc/inc/column.hxx | |
parent | 217896aa33e40b113fafdaa109d02992f7d9506a (diff) |
Group formula cells in ScColumn::MixData().
Change-Id: I38186e2bf82ed56fbe859b17dcc1d31f36471bd8
Diffstat (limited to 'sc/inc/column.hxx')
-rw-r--r-- | sc/inc/column.hxx | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index d0240077347e..01e9ef72358e 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -487,17 +487,18 @@ public: bool HasBroadcaster() const; void BroadcastCells( const std::vector<SCROW>& rRows ); - void EndFormulaListening( sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2 ); void InterpretDirtyCells( SCROW nRow1, SCROW nRow2 ); void JoinNewFormulaCell( const sc::CellStoreType::position_type& aPos, ScFormulaCell& rCell ) const; /** - * Detouch a formula cell that's about to be deleted, or removed from + * Detach a formula cell that's about to be deleted, or removed from * document storage (if that ever happens). */ - void DetouchFormulaCell( const sc::CellStoreType::position_type& aPos, ScFormulaCell& rCell ) const; + void DetachFormulaCell( const sc::CellStoreType::position_type& aPos, ScFormulaCell& rCell ); + + void DetachFormulaCells( const sc::CellStoreType::position_type& aPos, size_t nLength ); void UnshareFormulaCell( const sc::CellStoreType::position_type& aPos, ScFormulaCell& rCell ) const; @@ -515,14 +516,6 @@ public: */ void RegroupFormulaCells(); - /** - * Regroup existing formula cells when a range of new cells are inserted. - * - * @param nRow1 first row of inserted new cell span. - * @param nRow2 last row of inserted new cell span. - */ - void RegroupFormulaCells( SCROW nRow1, SCROW nRow2 ); - #if DEBUG_COLUMN_STORAGE void DumpFormulaGroups() const; #endif |