[Tizen] Remove to call key consumed event in ATSPI bridge accepted/tizen/unified/20230623.160640
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Wed, 21 Jun 2023 01:32:38 +0000 (10:32 +0900)
committerJaehyun Cho <jae_hyun.cho@samsung.com>
Wed, 21 Jun 2023 01:33:13 +0000 (10:33 +0900)
This reverts commit ea94abc19b1ae7d6714d52801712fae46882e4ec.

Change-Id: I7d6b5a655525fea3554e40a09597970a46c4b6e4

dali/internal/accessibility/bridge/bridge-impl.cpp

index f76a0ea..de479b1 100644 (file)
@@ -123,14 +123,7 @@ public:
       }
     }
 
-    auto methodObject = mRegistryClient.method<bool(std::tuple<uint32_t, int32_t, int32_t, int32_t, int32_t, std::string, bool>)>("NotifyListenersSync");
-    auto result       = methodObject.call(std::tuple<uint32_t, int32_t, int32_t, int32_t, int32_t, std::string, bool>{keyType, 0, static_cast<int32_t>(keyCode), 0, static_cast<int32_t>(timeStamp), keyName, isText ? 1 : 0});
-    if(!result)
-    {
-      LOG() << result.getError().message;
-      return Consumed::NO;
-    }
-    return std::get<0>(result) ? Consumed::YES : Consumed::NO;
+    return Consumed::NO;
   }
 
   /**