svgtopt/SVG/SVGImpl/src/SVGTokenizer.cpp
branchRCL_3
changeset 38 db5c883ad1c5
parent 0 d46562c3d99d
child 39 1902ade171ab
equal deleted inserted replaced
22:9be6eed35a80 38:db5c883ad1c5
   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         lex.Val( aValue, '.' );
   308         if(lex.Val( aValue, '.' )== KErrNone)
   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          }
   314     return EFalse;
   315     return EFalse;
   315     }
   316     }