[Tizen] Remove to call key consumed event in ATSPI bridge accepted/tizen/unified/20220928.020805
authorHeeyong Song <heeyong.song@samsung.com>
Mon, 26 Sep 2022 05:04:32 +0000 (14:04 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Mon, 26 Sep 2022 05:04:39 +0000 (14:04 +0900)
Change-Id: Ie2807f6fcceeba037080ee93081b44f6797936ef

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