Fix Svace Issue 69/281269/1 accepted/tizen/unified/20220921.091749
authorWonsik Jung <sidein@samsung.com>
Thu, 15 Sep 2022 05:51:16 +0000 (14:51 +0900)
committerWonsik Jung <sidein@samsung.com>
Thu, 15 Sep 2022 05:52:45 +0000 (14:52 +0900)
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

index 5dd46e1..f568eb7 100644 (file)
@@ -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{}
 {
 }