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.
This commit is contained in:
Tim Janik 2005-12-22 16:55:44 +00:00 committed by Tim Janik
parent 75e6b53a78
commit f079466536
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Thu Dec 22 17:55:11 2005 Tim Janik <timj@gtk.org>
* gtk/gtkobject.h: parent type fixups in structure declarations.
Thu Dec 22 16:01:27 2005 Tim Janik <timj@imendio.com>
* gtk/gtkobject.c: derive GtkObject from GUnowned,

View File

@ -1,3 +1,7 @@
Thu Dec 22 17:55:11 2005 Tim Janik <timj@gtk.org>
* gtk/gtkobject.h: parent type fixups in structure declarations.
Thu Dec 22 16:01:27 2005 Tim Janik <timj@imendio.com>
* gtk/gtkobject.c: derive GtkObject from GUnowned,

View File

@ -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,