summaryrefslogtreecommitdiff
path: root/basegfx/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-20 11:55:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-20 12:14:45 +0100
commitb2ceee71bafac15c0401893f0475cbcf4164a9f6 (patch)
treea80b9373f3eb899fb27bea3f6a2e57f4b4254efa /basegfx/source
parentb149b0433d28b89b187f04455bcb242b8b17a48c (diff)
Code clean up.
Diffstat (limited to 'basegfx/source')
-rw-r--r--basegfx/source/polygon/b2dsvgpolypolygon.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/basegfx/source/polygon/b2dsvgpolypolygon.cxx b/basegfx/source/polygon/b2dsvgpolypolygon.cxx
index 863adf54a568..590b8db8f56f 100644
--- a/basegfx/source/polygon/b2dsvgpolypolygon.cxx
+++ b/basegfx/source/polygon/b2dsvgpolypolygon.cxx
@@ -80,8 +80,7 @@ namespace basegfx
bool lcl_getDoubleChar(double& o_fRetval,
sal_Int32& io_rPos,
- const ::rtl::OUString& rStr,
- const sal_Int32 /*nLen*/)
+ const ::rtl::OUString& rStr)
{
sal_Unicode aChar( rStr[io_rPos] );
::rtl::OUStringBuffer sNumberString;
@@ -136,7 +135,7 @@ namespace basegfx
const ::rtl::OUString& rStr,
const sal_Int32 nLen )
{
- if( !lcl_getDoubleChar(o_fRetval, io_rPos, rStr, nLen) )
+ if( !lcl_getDoubleChar(o_fRetval, io_rPos, rStr) )
return false;
lcl_skipSpacesAndCommas(io_rPos, rStr, nLen);