apply float parse
authorChulheon <ch.jeong47@samsung.com>
Tue, 2 Apr 2013 06:49:19 +0000 (15:49 +0900)
committerChulheon <ch.jeong47@samsung.com>
Tue, 2 Apr 2013 06:49:19 +0000 (15:49 +0900)
Change-Id: I93bba2ac1df5423ff93c3f5637aff004174b83a3

src/ui/controls/FUiCtrl_EditAreaImpl.cpp
src/ui/controls/FUiCtrl_EditFieldImpl.cpp
src/ui/controls/FUiCtrl_TextBoxImpl.cpp

index dbc8e43..6fbd23f 100644 (file)
@@ -1573,7 +1573,7 @@ protected:
                result r = E_SYSTEM;
                _UiBuilderControlLayout* pControlProperty = null;
                EditArea* pEditArea = null;
-               Rectangle rect;
+               FloatRectangle rect;
                String elementString;
                InputStyle inputStyle = INPUT_STYLE_FULLSCREEN;
                int limitLength = EDIT_AREA_DEFAULT_LIMIT_LENGTH;
@@ -1602,7 +1602,7 @@ protected:
                        return null;
                }
 
-               rect = pControlProperty->GetRect();
+               rect = pControlProperty->GetRectF();
 
                if (pControl->GetElement(L"inputStyle", elementString) || pControl->GetElement(L"InputStyle", elementString))
                {
index 881a471..bddc1f8 100644 (file)
@@ -1820,7 +1820,7 @@ protected:
                result r = E_SYSTEM;
                _UiBuilderControlLayout* pControlProperty = null;
                EditField* pEditField = null;
-               Rectangle rect;
+               FloatRectangle rect;
 
                String elementString;
                bool showTitle = false;
@@ -1855,7 +1855,7 @@ protected:
                        return null;
                }
 
-               rect = pControlProperty->GetRect();
+               rect = pControlProperty->GetRectF();
                String styleString;
                styleString = pControlProperty->GetStyle();
 
index 426df5d..33f65f9 100644 (file)
@@ -640,7 +640,7 @@ protected:
        {
                result r = E_SUCCESS;
 
-               Rectangle rect;
+               FloatRectangle rect;
 
                TextBox* pTextBox = null;
                _UiBuilderControlLayout* pControlProperty = null;
@@ -666,7 +666,7 @@ protected:
                        return null;
                }
 
-               rect = pControlProperty->GetRect();
+               rect = pControlProperty->GetRectF();
                if (pControl->GetElement("textboxBorder", elementString))
                {
                        if (elementString.Equals(L"TEXT_BOX_BORDER_NONE", false))