From 8b364a6d1675059f1330f88513004d25c32fcfce Mon Sep 17 00:00:00 2001 From: Tim Wo Date: Fri, 12 Sep 2003 13:55:57 +0000 Subject: GalA11yETextFactory should inherit from AtkObjectFactory not AtkObject. 2003-09-08 Tim Wo * gal/a11y/e-text/gal-a11y-e-text-factory.h: GalA11yETextFactory should inherit from AtkObjectFactory not AtkObject. (#47097). * gal/a11y/e-text/gal-a11y-e-text.c (et_class_init): Set value for "component_parent_iface". (#47097) * gal/e-text/e-text.c (e_text_class_init): Added registration code for GalA11yETextFactory. (#47097) svn path=/trunk/; revision=22551 --- widgets/text/e-text.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'widgets') diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c index 668a7315da..bda5f46eac 100644 --- a/widgets/text/e-text.c +++ b/widgets/text/e-text.c @@ -67,6 +67,9 @@ #include #include +#include +#include "gal/a11y/e-text/gal-a11y-e-text-factory.h" + #define PARENT_TYPE (gnome_canvas_item_get_type()) #define BORDER_INDENT 3 @@ -3594,6 +3597,11 @@ e_text_class_init (ETextClass *klass) if (!clipboard_atom) clipboard_atom = gdk_atom_intern ("CLIPBOARD", FALSE); + + atk_registry_set_factory_type (atk_get_default_registry (), + E_TYPE_TEXT, + gal_a11y_e_text_factory_get_type ()); + } /* Object initialization function for the text item */ -- cgit v1.2.3