From 337ef2e320f7805d26dd07d8d1bb53ab181dd2eb Mon Sep 17 00:00:00 2001 From: Hosang Kim Date: Wed, 7 Sep 2022 19:14:53 +0900 Subject: [PATCH] libaurum: add initializing variable Change-Id: I9b39305d92ab109e820a13361d8d062ac511c148 --- libaurum/src/UiSelector.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libaurum/src/UiSelector.cc b/libaurum/src/UiSelector.cc index 74822c9..5dd46e1 100644 --- a/libaurum/src/UiSelector.cc +++ b/libaurum/src/UiSelector.cc @@ -24,7 +24,7 @@ using namespace Aurum; UiSelector::UiSelector() : mId{}, mAutomationId{}, mRole{}, mText{}, mPkg{}, mType{}, mStyle{}, mTextPartialMatch{}, mXPath{}, mOcrText{}, mMatchId{}, mMatchAutomationId{}, mMatchRole{}, mMatchText{}, mMatchPkg{}, mMatchType{}, mMatchStyle{}, - mMatchTextPartialMatch{}, mMatchXPath{}, mMatchOcrText{}, mMatchChecked{}, mMatchCheckable{}, mMatchClickable{}, mMatchEnabled{}, + mMatchTextPartialMatch{}, mMatchXPath{}, mMatchOcrText{}, mMatchGeometry{}, 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{}, @@ -284,4 +284,4 @@ UiSelector *UiSelector::geometry(Rect geometry, bool isEqual) this->mGeometryIsEqual = isEqual; this->mMatchGeometry = true; return this; -} \ No newline at end of file +} -- 2.34.1