From f58c9e50445c3b7579c3cbc880047a69783f7832 Mon Sep 17 00:00:00 2001 From: Wonsik Jung Date: Thu, 15 Sep 2022 14:51:16 +0900 Subject: [PATCH] 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 --- libaurum/src/UiSelector.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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{} { } -- 2.34.1