svgtopt/SVG/SVGImpl/src/SVGTokenizer.cpp
branchRCL_3
changeset 39 1902ade171ab
parent 38 db5c883ad1c5
equal deleted inserted replaced
38:db5c883ad1c5 39:1902ade171ab
   303         // Decimal number, extract it
   303         // Decimal number, extract it
   304         TPtrC decimalString = tokenizer.SkippedString();
   304         TPtrC decimalString = tokenizer.SkippedString();
   305         TLex lex( decimalString );
   305         TLex lex( decimalString );
   306         // Specify the decimal seperator, instead of using
   306         // Specify the decimal seperator, instead of using
   307         // locale specific seperator.
   307         // locale specific seperator.
   308         if(lex.Val( aValue, '.' )== KErrNone)
   308         lex.Val( aValue, '.' );
   309             {
   309         
   310             tokenizer.SkipWhiteSpace();
   310         tokenizer.SkipWhiteSpace();
   311             aRemainder.Set( tokenizer.Remainder() );
   311         aRemainder.Set( tokenizer.Remainder() );
   312             return ETrue;
   312         return ETrue;
   313             }
   313         }
   314          }
       
   315     return EFalse;
   314     return EFalse;
   316     }
   315     }