From: Alejandro PiƱeiro Date: Wed, 10 Aug 2011 18:26:40 +0000 (+0200) Subject: Adding AtkWindow to atk.symbols and to AtkNoOpObject X-Git-Tag: ATK_2_1_5~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dce298b9557d16c8e49bb6e81658fbff92324b2e;p=platform%2Fupstream%2Fatk.git Adding AtkWindow to atk.symbols and to AtkNoOpObject --- diff --git a/atk/atk.symbols b/atk/atk.symbols index da787ec..7ed48e7 100644 --- a/atk/atk.symbols +++ b/atk/atk.symbols @@ -245,3 +245,4 @@ atk_value_get_minimum_value atk_value_get_type atk_value_set_current_value + atk_window_get_type diff --git a/atk/atknoopobject.c b/atk/atknoopobject.c index 543f515..5552ac1 100644 --- a/atk/atknoopobject.c +++ b/atk/atknoopobject.c @@ -116,6 +116,13 @@ atk_no_op_object_get_type (void) NULL }; + static const GInterfaceInfo atk_window_info = + { + (GInterfaceInitFunc) NULL, + (GInterfaceFinalizeFunc) NULL, + NULL + }; + type = g_type_register_static (ATK_TYPE_OBJECT, "AtkNoOpObject", &tinfo, 0); g_type_add_interface_static (type, ATK_TYPE_COMPONENT, @@ -138,6 +145,8 @@ atk_no_op_object_get_type (void) &atk_value_info); g_type_add_interface_static (type, ATK_TYPE_DOCUMENT, &atk_document_info); + g_type_add_interface_static (type, ATK_TYPE_WINDOW, + &atk_window_info); } return type; }