summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgtools.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svgio/source/svgreader/svgtools.cxx')
-rw-r--r--svgio/source/svgreader/svgtools.cxx4
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));
}
}