Fixed changing the size of the Frame
authorchoimunseok <ms47.choi@samsung.com>
Thu, 6 Mar 2014 00:34:04 +0000 (09:34 +0900)
committerchoimunseok <ms47.choi@samsung.com>
Thu, 6 Mar 2014 00:34:04 +0000 (09:34 +0900)
Change-Id: I23459b4c222c7454d7860554be9cd416bde0e645
Signed-off-by: choimunseok <ms47.choi@samsung.com>
src/ui/controls/FUiCtrl_Frame.cpp

index 99ad1ba..f58db8b 100644 (file)
@@ -693,16 +693,19 @@ _Frame::OnBoundsChanging(const FloatRectangle& bounds)
        {
                return E_SUCCESS;
        }
-#ifdef BUILD_BREAK
-       _EcoreEvas* pEcoreEvas = GetEcoreEvasMgr()->GetEcoreEvas();
-       SysTryReturn(NID_UI, pEcoreEvas, E_SYSTEM, E_SYSTEM, "[E_SYSTEM] A system error occurred.");
 
-       pEcoreEvas->SetWindowBounds(*GetRootWindow(), _CoordinateSystemUtils::ConvertToInteger(bounds));
-       result r = GetLastResult();
-       SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
+//#ifdef BUILD_BREAK
+//     _EcoreEvas* pEcoreEvas = GetEcoreEvasMgr()->GetEcoreEvas();
+//     SysTryReturn(NID_UI, pEcoreEvas, E_SYSTEM, E_SYSTEM, "[E_SYSTEM] A system error occurred.");
 
-       return r;
-#endif 
+//     pEcoreEvas->SetWindowBounds(*GetRootWindow(), _CoordinateSystemUtils::ConvertToInteger(bounds));
+//     result r = GetLastResult();
+//     SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
+
+//     return r;
+//#endif
+
+       return _Window::OnBoundsChanging(bounds);
 }