[Tizen] Remove to call key consumed event in ATSPI bridge accepted/tizen/unified/20230210.160941
authorEverLEEst(SangHyeon Lee) <sh10233.lee@samsung.com>
Wed, 8 Feb 2023 07:37:35 +0000 (16:37 +0900)
committerEverLEEst(SangHyeon Lee) <sh10233.lee@samsung.com>
Wed, 8 Feb 2023 07:37:35 +0000 (16:37 +0900)
This reverts commit 33b6bded88dc5504feb5c0d48645da9634781d7b.

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;
   }
 
   /**