From: Kimmo Hoikka Date: Wed, 19 Sep 2018 17:40:02 +0000 (+0100) Subject: Updates needed after encapsulation and harmonizing operators for LayoutLength X-Git-Tag: dali_1.3.43~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F81%2F189681%2F3;p=platform%2Fcore%2Fuifw%2Fdali-demo.git Updates needed after encapsulation and harmonizing operators for LayoutLength https://review.tizen.org/gerrit/#/c/189675/ Change-Id: Ib85562d7ddafcdc938ec766f3fee3b1ca4befb49 --- diff --git a/examples/simple-layout/custom-layout-impl.cpp b/examples/simple-layout/custom-layout-impl.cpp index 132c1fa..ecdb932 100644 --- a/examples/simple-layout/custom-layout-impl.cpp +++ b/examples/simple-layout/custom-layout-impl.cpp @@ -66,8 +66,7 @@ void CustomLayout::OnLayout( bool changed, LayoutLength left, LayoutLength top, LayoutLength childLeft( 0 ); // We want to vertically align the children to the middle - LayoutLength height = bottom - top; - LayoutLength middle = height / 2; + LayoutLength middle = (bottom - top) / 2; // Horizontally align the children to the middle of the space they are given too LayoutLength width = right - left; @@ -90,7 +89,7 @@ void CustomLayout::OnLayout( bool changed, LayoutLength left, LayoutLength top, LayoutLength childWidth = childLayout->GetMeasuredWidth(); LayoutLength childHeight = childLayout->GetMeasuredHeight(); - childTop = middle - (childHeight / 2); + childTop = middle - childHeight / 2; LayoutLength left = childLeft + center - childWidth / 2;