From cd83e2f1674c04c8a489cf5a15ef35c25491ee6e Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Fri, 18 Apr 2014 15:19:29 -0400 Subject: Handle sorting of broadcasters correctly. Change-Id: Iab46c26606880f0fa7c7067d8514b8be3629fe0f --- sc/inc/column.hxx | 3 +++ sc/inc/table.hxx | 3 +++ 2 files changed, 6 insertions(+) (limited to 'sc/inc') diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index ecbfeea6d09f..d26214bfa9fd 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -562,6 +562,9 @@ public: void DetachFormulaCells( const sc::CellStoreType::position_type& aPos, size_t nLength ); + void AttachFormulaCells( sc::StartListeningContext& rCxt, SCROW nRow1, SCROW nRow2 ); + void DetachFormulaCells( sc::EndListeningContext& rCxt, SCROW nRow1, SCROW nRow2 ); + /** * Regroup formula cells for the entire column. */ diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index ab3526d4e375..413152eadd1c 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -1041,6 +1041,9 @@ private: void EndListening( sc::EndListeningContext& rCxt, SCCOL nCol, SCROW nRow, SvtListener& rListener ); void StartAllListeners(); + void AttachFormulaCells( sc::StartListeningContext& rCxt, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ); + void DetachFormulaCells( sc::EndListeningContext& rCxt, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ); + void SetLoadingMedium(bool bLoading); SCSIZE FillMaxRot( RowInfo* pRowInfo, SCSIZE nArrCount, SCCOL nX1, SCCOL nX2, -- cgit