From 228dbf157df109ef75550d4a70d6c42efbfb6367 Mon Sep 17 00:00:00 2001 From: Padraig O'Briain Date: Fri, 14 Feb 2003 10:46:33 +0000 Subject: [PATCH] Add AtkHypertext interface as this object should claim to implement all 2003-02-14 Padraig O'Briain * atk/atknoopobject.c: Add AtkHypertext interface as this object should claim to implement all interfaces. --- ChangeLog | 5 +++++ atk/atknoopobject.c | 11 ++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b53628e..529f25e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-02-14 Padraig O'Briain + + * atk/atknoopobject.c: Add AtkHypertext interface as this object should + claim to implement all interfaces. + 2003-02-12 Padraig O'Briain * atk/atkhyperlink.c (atk_hyperlink_class_init): Correct typo in blurb diff --git a/atk/atknoopobject.c b/atk/atknoopobject.c index fcbf40a..616f083 100644 --- a/atk/atknoopobject.c +++ b/atk/atknoopobject.c @@ -1,5 +1,5 @@ /* ATK - Accessibility Toolkit - * Copyright 2001 Sun Microsystems Inc. + * Copyright 2001, 2002, 2003 Sun Microsystems Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -95,6 +95,13 @@ atk_no_op_object_get_type (void) NULL }; + static const GInterfaceInfo atk_hypertext_info = + { + (GInterfaceInitFunc) NULL, + (GInterfaceFinalizeFunc) NULL, + NULL + }; + static const GInterfaceInfo atk_value_info = { (GInterfaceInitFunc) NULL, @@ -119,6 +126,8 @@ atk_no_op_object_get_type (void) &atk_table_info); g_type_add_interface_static (type, ATK_TYPE_TEXT, &atk_text_info); + g_type_add_interface_static (type, ATK_TYPE_HYPERTEXT, + &atk_hypertext_info); g_type_add_interface_static (type, ATK_TYPE_VALUE, &atk_value_info); } -- 2.7.4