diff options
-rw-r--r-- | sc/inc/column.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/table4.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index bfe3fb84b42d..7d7e39ba9974 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -361,7 +361,7 @@ public: void SetAllFormulasDirty( const sc::SetFormulaDirtyContext& rCxt ); void SetDirtyFromClip( SCROW nRow1, SCROW nRow2, sc::ColumnSpanSet& rBroadcastSpans ); - void SetDirty( SCROW nRow1, SCROW nRow2, bool bBroadcast = true, bool bIncludeEmptyCells = false ); + void SetDirty( SCROW nRow1, SCROW nRow2, bool bBroadcast, bool bIncludeEmptyCells ); void SetDirtyVar(); void SetDirtyAfterLoad(); void SetTableOpDirty( const ScRange& ); diff --git a/sc/source/core/data/table4.cxx b/sc/source/core/data/table4.cxx index 13a7baf84785..84bafad88dae 100644 --- a/sc/source/core/data/table4.cxx +++ b/sc/source/core/data/table4.cxx @@ -1184,7 +1184,7 @@ void ScTable::FillFormulaVertical( std::vector<sc::RowSpan>::const_iterator it = aSpans.begin(), itEnd = aSpans.end(); for (; it != itEnd; ++it) - aCol[nCol].SetDirty(it->mnRow1, it->mnRow2, false); + aCol[nCol].SetDirty(it->mnRow1, it->mnRow2, false, false); rProgress += nRow2 - nRow1 + 1; if (pProgress) |