diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-20 15:44:23 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-21 08:37:21 +0200 |
commit | 65c69af584152a5f8f3d2f9752d9f051660b7755 (patch) | |
tree | 440f14fba7898864205b60c4795031ae1e6860b2 /svgio/qa | |
parent | a1dae1608afc518e4984694940450aa7950f89e3 (diff) |
loplugin:constparams in svgio
Change-Id: I35dd8b1373ce3c46a10b1da1ddc6dc3722ffa760
Reviewed-on: https://gerrit.libreoffice.org/40245
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svgio/qa')
-rw-r--r-- | svgio/qa/cppunit/SvgImportTest.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svgio/qa/cppunit/SvgImportTest.cxx b/svgio/qa/cppunit/SvgImportTest.cxx index 9a612f427114..da3e200a6285 100644 --- a/svgio/qa/cppunit/SvgImportTest.cxx +++ b/svgio/qa/cppunit/SvgImportTest.cxx @@ -36,7 +36,7 @@ using drawinglayer::primitive2d::Primitive2DContainer; class Test : public test::BootstrapFixture, public XmlTestTools { - void checkRectPrimitive(Primitive2DSequence& rPrimitive); + void checkRectPrimitive(Primitive2DSequence const & rPrimitive); void testStyles(); void testTdf87309(); @@ -113,7 +113,7 @@ Primitive2DSequence Test::parseSvg(const char* aSource) return xSvgParser->getDecomposition(aInputStream, aPath); } -void Test::checkRectPrimitive(Primitive2DSequence& rPrimitive) +void Test::checkRectPrimitive(Primitive2DSequence const & rPrimitive) { Primitive2dXmlDump dumper; xmlDocPtr pDocument = dumper.dumpAndParse(comphelper::sequenceToContainer<Primitive2DContainer>(rPrimitive)); |