[Tizen] Remove to call key consumed event in ATSPI bridge
authorEunki Hong <eunkiki.hong@samsung.com>
Mon, 22 May 2023 13:31:43 +0000 (22:31 +0900)
committerEunki Hong <eunkiki.hong@samsung.com>
Mon, 22 May 2023 13:31:52 +0000 (22:31 +0900)
This reverts commit 0d768e16bf1402267e5907512e76aa86002392a4.

Change-Id: I403d20e5053b7c0f561413e71c5a1a7841f5375f

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

index 215e0fb..3d5887e 100644 (file)
@@ -119,14 +119,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;
   }
 
   /**