diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-10 14:13:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-10 14:13:57 +0200 |
commit | 27c391517aa66594fbd168469a043023653fca07 (patch) | |
tree | bc954e03ee94e7a4772f2ca459d4840b1e85791d /sc | |
parent | 7d31fb844f64c979e1f692a3338f832260382c7a (diff) |
fix build
after commit 4d047221945b34a9023d852bbd19a2a24a7f54c3
"loplugin:checkunusedparams in sc(part4)"
Change-Id: I3d088bb73baa8c3d6e6186697c215350056c56a4
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/opencl-test.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx index ec39852db255..8ce1ca18577d 100644 --- a/sc/qa/unit/opencl-test.cxx +++ b/sc/qa/unit/opencl-test.cxx @@ -643,7 +643,7 @@ void ScOpenCLTest::testSharedFormulaXLSStockHistory() return; ScDocument& rDoc = xDocSh->GetDocument(); ScDocument& rDocRes = xDocShRes->GetDocument(); - xDocSh->DoHardRecalc(true); + xDocSh->DoHardRecalc(); // Check the results of formula cells in the shared formula range. for (SCROW i = 33; i < 44; ++i) @@ -667,7 +667,7 @@ void ScOpenCLTest::testSharedFormulaXLSGroundWater() return; ScDocument& rDoc = xDocSh->GetDocument(); ScDocument& rDocRes = xDocShRes->GetDocument(); - xDocSh->DoHardRecalc(true); + xDocSh->DoHardRecalc(); // Check the results of formula cells in the shared formula range. for (SCROW i = 5; i <= 77; ++i) @@ -884,7 +884,7 @@ void ScOpenCLTest::testMathFormulaSinh() return; ScDocument& rDoc = xDocSh->GetDocument(); ScDocument& rDocRes = xDocShRes->GetDocument(); - xDocSh->DoHardRecalc(true); + xDocSh->DoHardRecalc(); for (SCROW i = 0; i <= 15; ++i) { @@ -2640,7 +2640,7 @@ void ScOpenCLTest::testMathSumIfsFormula() return; ScDocument& rDoc = xDocSh->GetDocument(); ScDocument& rDocRes = xDocShRes->GetDocument(); - xDocSh->DoHardRecalc(true); + xDocSh->DoHardRecalc(); for (SCROW i = 2; i <= 11; ++i) { @@ -3410,7 +3410,7 @@ void ScOpenCLTest::testMathCountIfsFormula() return; ScDocument& rDoc = xDocSh->GetDocument(); ScDocument& rDocRes = xDocShRes->GetDocument(); - xDocSh->DoHardRecalc(true); + xDocSh->DoHardRecalc(); for (SCROW i = 1; i < 10; ++i) { @@ -3444,7 +3444,7 @@ void ScOpenCLTest::testMathAverageIfsFormula() ScDocument& rDoc = xDocSh->GetDocument(); ScDocument& rDocRes = xDocShRes->GetDocument(); - xDocSh->DoHardRecalc(true); + xDocSh->DoHardRecalc(); for (SCROW i = 1; i <= 11; ++i) { |