summaryrefslogtreecommitdiff
path: root/sc/source/core/data
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-12-03 16:13:46 +0100
committerEike Rathke <erack@redhat.com>2014-12-03 18:40:46 +0100
commitbf5261c88e1769bf8c383942e8d44d86a7818fa7 (patch)
tree06c73c9042094fdad4d6656c37f19ea381dbeb00 /sc/source/core/data
parente1a6b67946f48dc91690353fefe64e516cb37739 (diff)
get rid of defaulted boolean parameters in ScColumn::SetDirty()
Change-Id: Iba030c1a4fd3dad34bdd61377b73fa76a062b5f8 (cherry picked from commit a1a1c4600e6c7ee457b62098128b27471c077908)
Diffstat (limited to 'sc/source/core/data')
-rw-r--r--sc/source/core/data/table4.cxx2
1 files changed, 1 insertions, 1 deletions
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)