diff --git a/ChangeLog b/ChangeLog index 8780479283..280c9648e1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2009-01-21 Cody Russell + + Bug 568592 – GailTextCell no longer implements AtkAction interface + + * modules/other/gail/gailtextcell.c: Fix a regression in GailTextCell + from revision 19227 where G_DEFINE_TYPE_WITH_CODE was used to replace + hard-coded type definition but accidentally removed the registration + of the AtkAction interface. Patch from Peter Johanson. + 2009-01-16 Cody Russell Bug 567944 – [Win32] Sorted treeview columns can be unreadable diff --git a/modules/other/gail/gailtextcell.c b/modules/other/gail/gailtextcell.c index d264b10e82..a9349a4cee 100644 --- a/modules/other/gail/gailtextcell.c +++ b/modules/other/gail/gailtextcell.c @@ -128,7 +128,8 @@ gchar *gail_text_cell_property_list[] = { }; G_DEFINE_TYPE_WITH_CODE (GailTextCell, gail_text_cell, GAIL_TYPE_RENDERER_CELL, - G_IMPLEMENT_INTERFACE (ATK_TYPE_TEXT, atk_text_interface_init)) + G_IMPLEMENT_INTERFACE (ATK_TYPE_TEXT, atk_text_interface_init) + gail_cell_type_add_action_interface (g_define_type_id)) static void gail_text_cell_class_init (GailTextCellClass *klass)