X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=atk-adaptor%2Fevent.c;h=bbfa4df00c215b384f883b10ebbfbbea524cfe71;hb=a5b218b88d39d69de3c79a86952bbc9ad4d130f2;hp=2039b635e7764c641be54bfcd4bd48b6a25d8926;hpb=5d374cf95f2447a712f94dd2efe2b294ecab58ca;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/atk-adaptor/event.c b/atk-adaptor/event.c index 2039b63..bbfa4df 100644 --- a/atk-adaptor/event.c +++ b/atk-adaptor/event.c @@ -41,7 +41,7 @@ static gint atk_bridge_focus_tracker_id; #define ITF_EVENT_OBJECT "org.freedesktop.atspi.Event.Object" #define ITF_EVENT_WINDOW "org.freedesktop.atspi.Event.Window" -#define ITF_EVENT_DOCUMENT "org.freedekstop.atspi.Event.Document" +#define ITF_EVENT_DOCUMENT "org.freedesktop.atspi.Event.Document" #define ITF_EVENT_FOCUS "org.freedesktop.atspi.Event.Focus" /*---------------------------------------------------------------------------*/ @@ -227,7 +227,7 @@ emit_rect(AtkObject *accessible, gchar *path, *cname, *t; dbus_int32_t dummy = 0; - path = atk_dbus_object_to_path (accessible); + path = atk_dbus_object_to_path (accessible, FALSE); /* Tough decision here * We won't send events from accessible @@ -267,6 +267,8 @@ emit_rect(AtkObject *accessible, dbus_message_iter_close_container (&iter, &variant); dbus_connection_send(atk_adaptor_app_data->bus, sig, NULL); + + dbus_message_unref (sig); } /*---------------------------------------------------------------------------*/ @@ -325,7 +327,7 @@ property_event_listener (GSignalInvocationHint *signal_hint, if (strcmp (pname, "accessible-table-summary") == 0) { otemp = atk_table_get_summary(ATK_TABLE (accessible)); - stemp = atk_dbus_object_to_path (otemp); + stemp = atk_dbus_object_to_path (otemp, FALSE); if (stemp != NULL) emit(accessible, ITF_EVENT_OBJECT, PCHANGE, pname, 0, 0, DBUS_TYPE_OBJECT_PATH_AS_STRING, stemp); } @@ -333,7 +335,7 @@ property_event_listener (GSignalInvocationHint *signal_hint, { i = g_value_get_int (&(values->new_value)); otemp = atk_table_get_column_header(ATK_TABLE (accessible), i); - stemp = atk_dbus_object_to_path (otemp); + stemp = atk_dbus_object_to_path (otemp, FALSE); if (stemp != NULL) emit(accessible, ITF_EVENT_OBJECT, PCHANGE, pname, 0, 0, DBUS_TYPE_OBJECT_PATH_AS_STRING, stemp); } @@ -341,7 +343,7 @@ property_event_listener (GSignalInvocationHint *signal_hint, { i = g_value_get_int (&(values->new_value)); otemp = atk_table_get_row_header(ATK_TABLE (accessible), i); - stemp = atk_dbus_object_to_path (otemp); + stemp = atk_dbus_object_to_path (otemp, FALSE); if (stemp != NULL) emit(accessible, ITF_EVENT_OBJECT, PCHANGE, pname, 0, 0, DBUS_TYPE_OBJECT_PATH_AS_STRING, stemp); } @@ -522,7 +524,7 @@ active_descendant_event_listener (GSignalInvocationHint *signal_hint, minor = g_quark_to_string (signal_hint->detail); detail1 = atk_object_get_index_in_parent (child); - s = atk_dbus_object_to_path (child); + s = atk_dbus_object_to_path (child, FALSE); if (s == NULL) { g_free (s);