diff options
author | Tim Janik <timj@gtk.org> | 2005-12-22 16:55:44 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2005-12-22 16:55:44 +0000 |
commit | f079466536f8132896a101d696eb000c4af8f45d (patch) | |
tree | 5d23e3dead49e16b245b44304fac3d08fa82bf35 /gtk/gtkobject.h | |
parent | 75e6b53a78140092a500dac9c71e438111f1cc9b (diff) | |
download | gtk+-f079466536f8132896a101d696eb000c4af8f45d.tar.gz |
parent type fixups in structure declarations.
Thu Dec 22 17:55:11 2005 Tim Janik <timj@gtk.org>
* gtk/gtkobject.h: parent type fixups in structure declarations.
Diffstat (limited to 'gtk/gtkobject.h')
-rw-r--r-- | gtk/gtkobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkobject.h b/gtk/gtkobject.h index 2fbea5b44c..b617f5d6d0 100644 --- a/gtk/gtkobject.h +++ b/gtk/gtkobject.h @@ -82,7 +82,7 @@ typedef struct _GtkObjectClass GtkObjectClass; struct _GtkObject { - GObject parent_instance; + GUnowned parent_instance; /* 32 bits of flags. GtkObject only uses 4 of these bits and * GtkWidget uses the rest. This is done because structs are @@ -94,7 +94,7 @@ struct _GtkObject struct _GtkObjectClass { - GObjectClass parent_class; + GUnownedClass parent_class; /* Non overridable class methods to set and get per class arguments */ void (*set_arg) (GtkObject *object, |