From fbae41e2de9a29e00532cdefc28098781ad99c86 Mon Sep 17 00:00:00 2001 From: Kimmo Hoikka Date: Wed, 19 Sep 2018 18:40:02 +0100 Subject: [PATCH] Updates needed after encapsulation and harmonizing operators for LayoutLength https://review.tizen.org/gerrit/#/c/189675/ Change-Id: Ib85562d7ddafcdc938ec766f3fee3b1ca4befb49 --- examples/simple-layout/custom-layout-impl.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; -- 2.7.4