From f877e8cfc714a6ba77febe03098ca75b379b4762 Mon Sep 17 00:00:00 2001 From: "keonpyo.kong" Date: Tue, 9 Apr 2013 20:15:43 +0900 Subject: [PATCH] Change parsing function in WebMaker Change-Id: I25ef3aaf57666cc9478873bb089fff832dd594bf Signed-off-by: keonpyo.kong --- src/controls/FWebCtrl_WebMaker.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } -- 2.7.4