diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-01 11:24:49 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-01 12:48:50 +0200 |
commit | 1685ff1478b6ded2d9d23120cbd2e3dc3fe97ea7 (patch) | |
tree | 39a459141b48eb67744a45d40ac97db977ecdba8 /svgio/source | |
parent | b3483a07bc49d6726480a4ac76473bbee5a535d5 (diff) |
loplugin:unuseddefaultparam in svgio
Change-Id: I47fe88cd8c943acb9162cdfca53fb5fdbaacec04
Diffstat (limited to 'svgio/source')
-rw-r--r-- | svgio/source/svgreader/svgtools.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svgio/source/svgreader/svgtools.cxx b/svgio/source/svgreader/svgtools.cxx index db5e16332559..3783d406d60c 100644 --- a/svgio/source/svgreader/svgtools.cxx +++ b/svgio/source/svgreader/svgtools.cxx @@ -1682,7 +1682,7 @@ namespace svgio return rCandidate; } - ::std::vector< double > solveSvgNumberVector(const SvgNumberVector& rInput, const InfoProvider& rInfoProvider, NumberType aNumberType) + ::std::vector< double > solveSvgNumberVector(const SvgNumberVector& rInput, const InfoProvider& rInfoProvider) { ::std::vector< double > aRetval; @@ -1693,7 +1693,7 @@ namespace svgio for(sal_uInt32 a(0); a < nCount; a++) { - aRetval.push_back(rInput[a].solve(rInfoProvider, aNumberType)); + aRetval.push_back(rInput[a].solve(rInfoProvider)); } } |