After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 568592 - GailTextCell no longer implements AtkAction interface
GailTextCell no longer implements AtkAction interface
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Accessibility
unspecified
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2009-01-21 20:26 UTC by Peter Johanson
Modified: 2009-01-21 21:24 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch to make GtkTextCell implement AtkAction again. (655 bytes, patch)
2009-01-21 20:28 UTC, Peter Johanson
committed Details | Review

Description Peter Johanson 2009-01-21 20:26:44 UTC
revision 19227 of gtk+ (Use G_DEFINE_TYPE[_WITH_CODE] instead of hand-coding the get_type functions. Bug #504661.) accidentally removed the registration of GailTextCell as implementing the "AtkAction" interface. As a result, the "activate" action is no longer accessible, since the interface as a whole isn't implemented.

I will attach a patch which should fix this (Will test it locally here as soon as I can safely install gtk+ with the patch, I don't currently have that setup).
Comment 1 Peter Johanson 2009-01-21 20:28:35 UTC
Created attachment 126942 [details] [review]
Patch to make GtkTextCell implement AtkAction again.
Comment 2 Matthias Clasen 2009-01-21 21:14:01 UTC
Looks fine, please commit.
Comment 3 Cody Russell 2009-01-21 21:24:18 UTC
Committed to trunk and gtk-2-14

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.