gtk+ r22167 - in branches/gtk-2-14: . modules/other/gail
- From: bratsche svn gnome org
- To: svn-commits-list gnome org
- Subject: gtk+ r22167 - in branches/gtk-2-14: . modules/other/gail
- Date: Wed, 21 Jan 2009 21:23:04 +0000 (UTC)
Author: bratsche
Date: Wed Jan 21 21:23:04 2009
New Revision: 22167
URL: http://svn.gnome.org/viewvc/gtk+?rev=22167&view=rev
Log:
2009-01-21 Cody Russell <bratsche gnome org>
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.
Modified:
branches/gtk-2-14/ChangeLog
branches/gtk-2-14/modules/other/gail/gailtextcell.c
Modified: branches/gtk-2-14/modules/other/gail/gailtextcell.c
==============================================================================
--- branches/gtk-2-14/modules/other/gail/gailtextcell.c (original)
+++ branches/gtk-2-14/modules/other/gail/gailtextcell.c Wed Jan 21 21:23:04 2009
@@ -128,7 +128,8 @@
};
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)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]