From: Hosang Kim Date: Wed, 18 May 2022 12:03:02 +0000 (+0900) Subject: UiSelector: fix build warning X-Git-Tag: submit/tizen/20220701.080520~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d2e6154cdece615f4d985e25919f7d42f1440007;p=platform%2Fcore%2Fuifw%2Faurum.git UiSelector: fix build warning Change-Id: I5dec5b361ba7fb6c9ceda2f1cec27cc58e4e8c91 --- diff --git a/libaurum/src/UiSelector.cc b/libaurum/src/UiSelector.cc index f97aea3..7d703dc 100644 --- a/libaurum/src/UiSelector.cc +++ b/libaurum/src/UiSelector.cc @@ -22,9 +22,9 @@ using namespace Aurum; UiSelector::UiSelector() -: mId{}, mAutomationId{}, mRole{}, mText{}, mTextPartialMatch{}, mPkg{}, mType{}, mStyle{}, - mMatchId{}, mMatchAutomationId{}, mMatchRole{}, mMatchText{}, mMatchTextPartialMatch{}, mMatchXPath{}, mMatchPkg{}, - mMatchType{}, mMatchStyle{}, mMatchChecked{}, mMatchCheckable{}, mMatchClickable{}, mMatchEnabled{}, mMatchFocused{}, +: mId{}, mAutomationId{}, mRole{}, mText{}, mPkg{}, mType{}, mStyle{}, mTextPartialMatch{}, mXPath{}, + mMatchId{}, mMatchAutomationId{}, mMatchRole{}, mMatchText{}, mMatchPkg{}, mMatchType{}, mMatchStyle{}, + mMatchTextPartialMatch{}, mMatchXPath{}, mMatchChecked{}, mMatchCheckable{}, mMatchClickable{}, mMatchEnabled{}, mMatchFocused{}, mMatchFocusable{}, mMatchScrollable{}, mMatchSelected{}, mMatchShowing{}, mMatchActive{}, mMatchVisible{}, mMatchSelectable{}, mMinDepth{}, mMaxDepth{}, mIschecked{}, mIscheckable{}, mIsclickable{}, mIsenabled{}, mIsfocused{}, mIsfocusable{}, mIsscrollable{}, mIsselected{}, mIsshowing{}, mIsactive{}, mIsvisible{}, @@ -265,4 +265,4 @@ UiSelector *UiSelector::fromParent(std::shared_ptr parent) { mParent = parent; return this; -} \ No newline at end of file +}