Adding AtkWindow to atk.symbols and to AtkNoOpObject
authorAlejandro Piñeiro <apinheiro@igalia.com>
Wed, 10 Aug 2011 18:26:40 +0000 (20:26 +0200)
committerAlejandro Piñeiro <apinheiro@igalia.com>
Tue, 16 Aug 2011 17:03:55 +0000 (19:03 +0200)
atk/atk.symbols
atk/atknoopobject.c

index da787ec..7ed48e7 100644 (file)
        atk_value_get_minimum_value
        atk_value_get_type
        atk_value_set_current_value
+       atk_window_get_type
index 543f515..5552ac1 100644 (file)
@@ -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;
 }