[Tizen] Remove to call key consumed event in ATSPI bridge
authorHosang Kim <hosang12.kim@samsung.com>
Tue, 2 Jan 2024 06:50:20 +0000 (15:50 +0900)
committerHosang Kim <hosang12.kim@samsung.com>
Tue, 2 Jan 2024 06:50:20 +0000 (15:50 +0900)
This reverts commit 45af17544e9fc46cc8a2439fdb3ef2a03d50b88d.

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

index 2ebc048..87e6c20 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;
   }
 
   /**