diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-21 13:12:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-21 15:02:41 +0200 |
commit | 0ab1e76a29bbd667a208d63e3b6fe207d32d8374 (patch) | |
tree | 14bdec6929b8f47b79b43f32d18a0966b5538bf2 /chart2/qa/extras | |
parent | 123ee9606938abc2be03ab7d35b66544141ade64 (diff) |
loplugin:defaultparams
Change-Id: Iaf6415d3b33a4ce195a00913a0df69f1fb794217
Diffstat (limited to 'chart2/qa/extras')
-rw-r--r-- | chart2/qa/extras/chart2export.cxx | 8 | ||||
-rw-r--r-- | chart2/qa/extras/chart2import.cxx | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/chart2/qa/extras/chart2export.cxx b/chart2/qa/extras/chart2export.cxx index b10d6a5acc58..1e73718ec2ab 100644 --- a/chart2/qa/extras/chart2export.cxx +++ b/chart2/qa/extras/chart2export.cxx @@ -514,7 +514,7 @@ void Chart2ExportTest::testScatterChartTextXValues() Reference<chart2::XChartDocument> xChartDoc(getChartDocFromWriter(0), uno::UNO_QUERY); CPPUNIT_ASSERT(xChartDoc.is()); - Reference<chart2::XChartType> xCT = getChartTypeFromDoc(xChartDoc, 0, 0); + Reference<chart2::XChartType> xCT = getChartTypeFromDoc(xChartDoc, 0); CPPUNIT_ASSERT(xCT.is()); // Make sure we have exactly 3 data series. @@ -1031,7 +1031,7 @@ void Chart2ExportTest::testScatterPlotLabels() Reference<chart2::XChartDocument> xChartDoc(getChartDocFromWriter(0), uno::UNO_QUERY); CPPUNIT_ASSERT(xChartDoc.is()); - Reference<chart2::XChartType> xCT = getChartTypeFromDoc(xChartDoc, 0, 0); + Reference<chart2::XChartType> xCT = getChartTypeFromDoc(xChartDoc, 0); CPPUNIT_ASSERT(xCT.is()); // Make sure the original chart has 'a', 'b', 'c' as its data labels. @@ -1047,7 +1047,7 @@ void Chart2ExportTest::testScatterPlotLabels() xChartDoc.set(getChartDocFromWriter(0), uno::UNO_QUERY); CPPUNIT_ASSERT(xChartDoc.is()); - xCT = getChartTypeFromDoc(xChartDoc, 0, 0); + xCT = getChartTypeFromDoc(xChartDoc, 0); CPPUNIT_ASSERT(xCT.is()); aLabels = getDataSeriesLabelsFromChartType(xCT); @@ -1167,7 +1167,7 @@ void checkSheetForGapWidthAndOverlap(uno::Reference< chart2::XChartDocument > xC { CPPUNIT_ASSERT(xChartDoc.is()); - Reference< chart2::XChartType > xChartType = getChartTypeFromDoc( xChartDoc, 0, 0 ); + Reference< chart2::XChartType > xChartType = getChartTypeFromDoc( xChartDoc, 0 ); CPPUNIT_ASSERT(xChartType.is()); Reference< beans::XPropertySet > xPropSet( xChartType, uno::UNO_QUERY_THROW ); diff --git a/chart2/qa/extras/chart2import.cxx b/chart2/qa/extras/chart2import.cxx index 9d3d891c3b1d..3c33e1f7686a 100644 --- a/chart2/qa/extras/chart2import.cxx +++ b/chart2/qa/extras/chart2import.cxx @@ -354,7 +354,7 @@ void Chart2ImportTest::testDOCXChartSeries() Reference<chart2::XChartDocument> xChartDoc(getChartDocFromWriter(0), uno::UNO_QUERY); CPPUNIT_ASSERT(xChartDoc.is()); - Reference<chart2::XChartType> xCT = getChartTypeFromDoc(xChartDoc, 0, 0); + Reference<chart2::XChartType> xCT = getChartTypeFromDoc(xChartDoc, 0); CPPUNIT_ASSERT(xCT.is()); std::vector<uno::Sequence<uno::Any> > aLabels = getDataSeriesLabelsFromChartType(xCT); @@ -382,7 +382,7 @@ void Chart2ImportTest::testPPTXChartSeries() Reference<chart2::XChartDocument> xChartDoc(getChartDocFromDrawImpress(0, 0), uno::UNO_QUERY); CPPUNIT_ASSERT(xChartDoc.is()); - Reference<chart2::XChartType> xCT = getChartTypeFromDoc(xChartDoc, 0, 0); + Reference<chart2::XChartType> xCT = getChartTypeFromDoc(xChartDoc, 0); CPPUNIT_ASSERT(xCT.is()); std::vector<uno::Sequence<uno::Any> > aLabels = getDataSeriesLabelsFromChartType(xCT); @@ -405,7 +405,7 @@ void Chart2ImportTest::testPPTXHiddenDataSeries() CPPUNIT_ASSERT_MESSAGE("'Automatic' chart background fill in pptx should be loaded as no fill (transparent).", eStyle == drawing::FillStyle_NONE); - Reference<chart2::XChartType> xCT = getChartTypeFromDoc(xChartDoc, 0, 0); + Reference<chart2::XChartType> xCT = getChartTypeFromDoc(xChartDoc, 0); CPPUNIT_ASSERT(xCT.is()); // There should be only one data series present. @@ -621,7 +621,7 @@ void Chart2ImportTest::testFlatODSStackedColumnChart() Reference<chart2::XChartDocument> xChartDoc = getChartDocFromSheet(0, mxComponent); CPPUNIT_ASSERT(xChartDoc.is()); - Reference<chart2::XChartType> xChartType = getChartTypeFromDoc(xChartDoc, 0, 0); + Reference<chart2::XChartType> xChartType = getChartTypeFromDoc(xChartDoc, 0); CPPUNIT_ASSERT(xChartType.is()); Reference<chart2::XDataSeriesContainer> xDSCont(xChartType, UNO_QUERY); |