From d2e6154cdece615f4d985e25919f7d42f1440007 Mon Sep 17 00:00:00 2001 From: Hosang Kim Date: Wed, 18 May 2022 21:03:02 +0900 Subject: [PATCH] UiSelector: fix build warning Change-Id: I5dec5b361ba7fb6c9ceda2f1cec27cc58e4e8c91 --- libaurum/src/UiSelector.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 +} -- 2.34.1