From: keonpyo.kong Date: Tue, 9 Apr 2013 11:15:43 +0000 (+0900) Subject: Change parsing function in WebMaker X-Git-Tag: 2.1b_release~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f877e8cfc714a6ba77febe03098ca75b379b4762;p=platform%2Fframework%2Fnative%2Fweb.git Change parsing function in WebMaker Change-Id: I25ef3aaf57666cc9478873bb089fff832dd594bf Signed-off-by: keonpyo.kong --- diff --git a/src/controls/FWebCtrl_WebMaker.cpp b/src/controls/FWebCtrl_WebMaker.cpp index ebe3522..8976de2 100755 --- a/src/controls/FWebCtrl_WebMaker.cpp +++ b/src/controls/FWebCtrl_WebMaker.cpp @@ -28,6 +28,7 @@ #include #include #include +#include using namespace Tizen::Graphics; @@ -109,7 +110,7 @@ protected: if (pControl->GetElement(L"fontSize", elementString) || pControl->GetElement(L"FontSize", elementString)) { int fontSize; - Base::Integer::Parse(elementString, fontSize); + fontSize= _CoordinateSystemUtils::ConvertToFloat(elementString); setting.SetFontSize(fontSize); }