diff options
-rw-r--r-- | sc/inc/column.hxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/column.cxx | 3 | ||||
-rw-r--r-- | sc/source/core/data/column2.cxx | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index e4700e9e6e48..68784b9bd932 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -142,7 +142,6 @@ class ScColumn ScAttrArray* pAttrArray; ScDocument* pDocument; - bool mbDirtyGroups; /// formula groups are dirty. size_t mnBlkCountFormula; diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx index 9d68fbf8381b..b1acc841a0ca 100644 --- a/sc/source/core/data/column.cxx +++ b/sc/source/core/data/column.cxx @@ -91,7 +91,6 @@ ScColumn::ScColumn() : nTab( 0 ), pAttrArray( nullptr ), pDocument( nullptr ), - mbDirtyGroups(true), mnBlkCountFormula(0) { maCells.resize(MAXROWCOUNT); @@ -1911,8 +1910,6 @@ void ScColumn::SwapCol(ScColumn& rCol) pAttrArray->SetCol(nCol); rCol.pAttrArray->SetCol(rCol.nCol); - std::swap(mbDirtyGroups, rCol.mbDirtyGroups); - // Reset column positions in formula cells. resetColumnPosition(maCells, nCol); resetColumnPosition(rCol.maCells, rCol.nCol); diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx index 162fbcff9b95..890e319e3d22 100644 --- a/sc/source/core/data/column2.cxx +++ b/sc/source/core/data/column2.cxx @@ -1504,8 +1504,6 @@ void ScColumn::CellStorageModified() { // TODO: Update column's "last updated" timestamp here. - mbDirtyGroups = true; - #if DEBUG_COLUMN_STORAGE if (maCells.size() != MAXROWCOUNT) { |