[Tizen] Remove to call key consumed event in ATSPI bridge accepted/tizen/unified/20221216.024016
authorjoogab.yun <joogab.yun@samsung.com>
Wed, 14 Dec 2022 01:35:06 +0000 (10:35 +0900)
committerjoogab.yun <joogab.yun@samsung.com>
Wed, 14 Dec 2022 01:35:18 +0000 (10:35 +0900)
This reverts commit 3f87c81f2632898acce3b972f9754d9e7e8336e0.

Change-Id: Iba0a0222eb3a11b937f7b7e286e630c9be042a30

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

index e274ad8..3787031 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;
   }
 
   /**