[Tizen] Remove to call key consumed event in ATSPI bridge
authorEunki, Hong <eunkiki.hong@samsung.com>
Tue, 4 Oct 2022 09:26:53 +0000 (18:26 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Tue, 4 Oct 2022 09:26:57 +0000 (18:26 +0900)
This reverts commit efb64a13dddd0f620603b861f735d227848ffe12.

Change-Id: Iba685d1c534f528261caffa5c43c1617f3dd8437

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

index afd3a96..6484620 100644 (file)
@@ -122,14 +122,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;
   }
 
   /**