[AT-SPI] Remove unnecessary parameter for Accessible::EmitActiveDescendantChanged 11/269911/1
authorArtur Świgoń <a.swigon@samsung.com>
Fri, 21 Jan 2022 09:55:46 +0000 (10:55 +0100)
committerArtur Świgoń <a.swigon@samsung.com>
Fri, 21 Jan 2022 10:55:28 +0000 (11:55 +0100)
Change-Id: I3151a873ced92e3e9c9b51fae0262abd1f4b3a8c

dali-toolkit/public-api/controls/control-impl.cpp

index 9c52f22..1a2445c 100644 (file)
@@ -484,7 +484,7 @@ void Control::EmitKeyInputFocusSignal(bool focusGained)
     auto parent = self->GetParent();
     if(parent && !self->GetStates()[Dali::Accessibility::State::MANAGES_DESCENDANTS])
     {
-      parent->EmitActiveDescendantChanged(parent, self);
+      parent->EmitActiveDescendantChanged(self);
     }
   }