diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-07-19 17:22:32 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-08-08 06:22:45 +0200 |
commit | e15e37b6cedda5c2746fa6ef61aada81101231ba (patch) | |
tree | a76d27f3192510699a84dfe632d6512169643f71 /gtk/gtkimcontext.h | |
parent | 8b2108a8a458621e82b4b1de8eb25fded6829c48 (diff) | |
download | gtk+-e15e37b6cedda5c2746fa6ef61aada81101231ba.tar.gz |
Fix GtkIMContextClass inheritance
Should be GObjectClass instead GtkObjectClass
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=90935
Diffstat (limited to 'gtk/gtkimcontext.h')
-rw-r--r-- | gtk/gtkimcontext.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gtk/gtkimcontext.h b/gtk/gtkimcontext.h index 21452f2cce..25c218b545 100644 --- a/gtk/gtkimcontext.h +++ b/gtk/gtkimcontext.h @@ -50,10 +50,7 @@ struct _GtkIMContext struct _GtkIMContextClass { /*< private >*/ - /* Yes, this should be GObjectClass, be we can't fix it without breaking - * binary compatibility - see bug #90935 - */ - GtkObjectClass parent_class; + GObjectClass parent_class; /*< public >*/ /* Signals */ |