diff options
| -rw-r--r-- | sc/source/core/data/column.cxx | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx index 45f211cbedd1..5a817c2f747e 100644 --- a/sc/source/core/data/column.cxx +++ b/sc/source/core/data/column.cxx @@ -1899,6 +1899,9 @@ void ScColumn::SwapCol(ScColumn& rCol)      maCellTextAttrs.swap(rCol.maCellTextAttrs);      maCellNotes.swap(rCol.maCellNotes); +    // Swap all CellStoreEvent mdds event_func related. +    std::swap( mnBlkCountFormula, rCol.mnBlkCountFormula); +      // notes update caption      UpdateNoteCaptions(0, MAXROW);      rCol.UpdateNoteCaptions(0, MAXROW);  | 
