diff options
-rw-r--r-- | sc/source/core/data/column2.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx index a39016abf8b2..8759c513210c 100644 --- a/sc/source/core/data/column2.cxx +++ b/sc/source/core/data/column2.cxx @@ -2862,13 +2862,6 @@ void ScColumn::SetFormulaResults( SCROW nRow, const double* pResults, size_t nLe rCell.ResetDirty(); rCell.SetChanged(true); } - - std::vector<SCROW> aRows; - aRows.reserve(nLen); - for (size_t i = 0; i < nLen; ++i) - aRows.push_back(nRow+i); - - BroadcastCells(aRows, SC_HINT_DATACHANGED); } void ScColumn::SetFormulaResults( SCROW nRow, const formula::FormulaTokenRef* pResults, size_t nLen ) @@ -2895,13 +2888,6 @@ void ScColumn::SetFormulaResults( SCROW nRow, const formula::FormulaTokenRef* pR rCell.ResetDirty(); rCell.SetChanged(true); } - - std::vector<SCROW> aRows; - aRows.reserve(nLen); - for (size_t i = 0; i < nLen; ++i) - aRows.push_back(nRow+i); - - BroadcastCells(aRows, SC_HINT_DATACHANGED); } void ScColumn::SetNumberFormat( SCROW nRow, sal_uInt32 nNumberFormat ) |