[Tizen] Remove to call key consumed event in ATSPI bridge 28/278528/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Thu, 21 Jul 2022 11:54:08 +0000 (20:54 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Thu, 21 Jul 2022 12:19:13 +0000 (21:19 +0900)
- Remove the code related to `methodObject.call()` temporarily.
 The patch should be reverted after the solution is applied.

Change-Id: I7165fed4015bdcfaa7d0caf61431f97a4cad9775
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
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;
   }
 
   /**