[Tizen] Add SetListenPostRender interface 04/289204/3 accepted/tizen/unified/20230310.062659
authorWoochan Lee <wc0917.lee@samsung.com>
Thu, 2 Mar 2023 11:04:25 +0000 (20:04 +0900)
committerWoochan Lee <wc0917.lee@samsung.com>
Mon, 6 Mar 2023 07:10:55 +0000 (16:10 +0900)
Add dummy method for consistency.

Change-Id: I22a9d7a7a643583eb2b0190975fd1253929d21b5

atk-adaptor/adaptors/accessible-adaptor.c

index e17ab03..b17a7bb 100644 (file)
@@ -1499,6 +1499,19 @@ impl_GetInterfaces (DBusConnection * bus,
   return reply;
 }
 
+// TIZEN_ONLY(20230302) - Dummy method for consistency
+static DBusMessage *
+impl_SetListenPostRender (DBusConnection * bus,
+                          DBusMessage * message, void *user_data)
+{
+  DBusMessage *reply;
+
+  reply = dbus_message_new_error(message, DBUS_ERROR_NOT_SUPPORTED, "This API is not implemented");
+
+  return reply;
+}
+//
+
 static dbus_bool_t
 impl_get_AccessibleId (DBusMessageIter * iter, void *user_data)
 {
@@ -1526,6 +1539,9 @@ static DRouteMethod methods[] = {
   {impl_GetAttributes, "GetAttributes"},
   {impl_GetApplication, "GetApplication"},
   {impl_GetInterfaces, "GetInterfaces"},
+// TIZEN_ONLY(20230302) - Dummy method for consistency
+  {impl_SetListenPostRender, "SetListenPostRender"},
+//
   {NULL, NULL}
 };