Kaydet (Commit) a1a1c460 authored tarafından Eike Rathke's avatar Eike Rathke

get rid of defaulted boolean parameters in ScColumn::SetDirty()

Change-Id: Iba030c1a4fd3dad34bdd61377b73fa76a062b5f8
üst b9ca4de9
...@@ -361,7 +361,7 @@ public: ...@@ -361,7 +361,7 @@ public:
void SetAllFormulasDirty( const sc::SetFormulaDirtyContext& rCxt ); void SetAllFormulasDirty( const sc::SetFormulaDirtyContext& rCxt );
void SetDirtyFromClip( SCROW nRow1, SCROW nRow2, sc::ColumnSpanSet& rBroadcastSpans ); 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 SetDirtyVar();
void SetDirtyAfterLoad(); void SetDirtyAfterLoad();
void SetTableOpDirty( const ScRange& ); void SetTableOpDirty( const ScRange& );
......
...@@ -1184,7 +1184,7 @@ void ScTable::FillFormulaVertical( ...@@ -1184,7 +1184,7 @@ void ScTable::FillFormulaVertical(
std::vector<sc::RowSpan>::const_iterator it = aSpans.begin(), itEnd = aSpans.end(); std::vector<sc::RowSpan>::const_iterator it = aSpans.begin(), itEnd = aSpans.end();
for (; it != itEnd; ++it) 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; rProgress += nRow2 - nRow1 + 1;
if (pProgress) if (pProgress)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment