From: Wonsik Jung Date: Thu, 15 Sep 2022 05:51:16 +0000 (+0900) Subject: Fix Svace Issue X-Git-Tag: accepted/tizen/unified/20220921.091749^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f58c9e50445c3b7579c3cbc880047a69783f7832;p=platform%2Fcore%2Fuifw%2Faurum.git Fix Svace Issue Fix Svace issue that is WID:49252874. WID:49252874 Constructor declared at UiSelector.cc:24 may not initialize class members of 'Aurum::UiSelector'. Following members aren't initialized: mGeometryIsEqual. Change-Id: Id8342f0d1c3883e54089d227b6ac173715bf3c52 --- diff --git a/libaurum/src/UiSelector.cc b/libaurum/src/UiSelector.cc index 5dd46e1..f568eb7 100644 --- a/libaurum/src/UiSelector.cc +++ b/libaurum/src/UiSelector.cc @@ -28,7 +28,7 @@ UiSelector::UiSelector() mMatchFocused{}, mMatchFocusable{}, mMatchScrollable{}, mMatchSelected{}, mMatchShowing{}, mMatchActive{}, mMatchVisible{}, mMatchSelectable{}, mMinDepth{}, mMaxDepth{}, mIschecked{}, mIscheckable{}, mIsclickable{}, mIsenabled{}, mIsfocused{}, mIsfocusable{}, mIsscrollable{}, mIsselected{}, mIsshowing{}, mIsactive{}, mIsvisible{}, - mIsselectable{}, mChild{}, mParent{}, mGeometry{} + mIsselectable{}, mChild{}, mParent{}, mGeometry{}, mGeometryIsEqual{} { }