diff -r db5c883ad1c5 -r 1902ade171ab svgtopt/SVG/SVGImpl/src/SVGTokenizer.cpp --- a/svgtopt/SVG/SVGImpl/src/SVGTokenizer.cpp Tue Aug 31 16:06:58 2010 +0300 +++ b/svgtopt/SVG/SVGImpl/src/SVGTokenizer.cpp Wed Sep 01 12:20:46 2010 +0100 @@ -305,12 +305,11 @@ TLex lex( decimalString ); // Specify the decimal seperator, instead of using // locale specific seperator. - if(lex.Val( aValue, '.' )== KErrNone) - { - tokenizer.SkipWhiteSpace(); - aRemainder.Set( tokenizer.Remainder() ); - return ETrue; - } - } + lex.Val( aValue, '.' ); + + tokenizer.SkipWhiteSpace(); + aRemainder.Set( tokenizer.Remainder() ); + return ETrue; + } return EFalse; }