From e6007cf40be9a1dd9913c6c7e539f14377add77e Mon Sep 17 00:00:00 2001 From: Petr Mladek Date: Mon, 14 May 2012 14:20:53 +0200 Subject: fdo#48070 more on parsing of arc paths also ignore "+" sign; remove unused sNumberString variable --- basegfx/source/polygon/b2dsvgpolypolygon.cxx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/basegfx/source/polygon/b2dsvgpolypolygon.cxx b/basegfx/source/polygon/b2dsvgpolypolygon.cxx index fc6e2ac62c25..86a44c702be4 100644 --- a/basegfx/source/polygon/b2dsvgpolypolygon.cxx +++ b/basegfx/source/polygon/b2dsvgpolypolygon.cxx @@ -149,13 +149,6 @@ namespace basegfx const sal_Int32 nLen) { sal_Unicode aChar( rStr[io_rPos] ); - ::rtl::OUStringBuffer sNumberString; - - if(sal_Unicode('+') == aChar) - { - sNumberString.append(rStr[io_rPos]); - aChar = rStr[++io_rPos]; - } if(sal_Unicode('0') == aChar) { -- cgit