[Tizen] Remove to call key consumed event in ATSPI bridge
authorjoogab.yun <joogab.yun@samsung.com>
Tue, 13 Feb 2024 06:11:32 +0000 (15:11 +0900)
committerjoogab.yun <joogab.yun@samsung.com>
Tue, 13 Feb 2024 06:11:36 +0000 (15:11 +0900)
This reverts commit 73f52e1683dd8f4092763357f4022054ac3489fc.

Change-Id: I95e9dfb5c4d0f7165035b4289a386edd1b74c329

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

index 3851cbc..0ee2aaa 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;
   }
 
   /**