renamed GUnowned to GInitiallyUnowned.

Thu Dec 22 18:53:14 2005  Tim Janik  <timj@gtk.org>

        * gtk/gtkobject.[hc]: renamed GUnowned to GInitiallyUnowned.
This commit is contained in:
Tim Janik 2005-12-22 17:58:40 +00:00 committed by Tim Janik
parent f079466536
commit b805119dd1
4 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Thu Dec 22 18:53:14 2005 Tim Janik <timj@gtk.org>
* gtk/gtkobject.[hc]: renamed GUnowned to GInitiallyUnowned.
Thu Dec 22 17:55:11 2005 Tim Janik <timj@gtk.org>
* gtk/gtkobject.h: parent type fixups in structure declarations.

View File

@ -1,3 +1,7 @@
Thu Dec 22 18:53:14 2005 Tim Janik <timj@gtk.org>
* gtk/gtkobject.[hc]: renamed GUnowned to GInitiallyUnowned.
Thu Dec 22 17:55:11 2005 Tim Janik <timj@gtk.org>
* gtk/gtkobject.h: parent type fixups in structure declarations.

View File

@ -96,7 +96,7 @@ gtk_object_get_type (void)
NULL, /* value_table */
};
object_type = g_type_register_static (G_TYPE_UNOWNED, I_("GtkObject"),
object_type = g_type_register_static (G_TYPE_INITIALLY_UNOWNED, I_("GtkObject"),
&object_info, G_TYPE_FLAG_ABSTRACT);
}

View File

@ -82,7 +82,7 @@ typedef struct _GtkObjectClass GtkObjectClass;
struct _GtkObject
{
GUnowned parent_instance;
GInitiallyUnowned 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
{
GUnownedClass parent_class;
GInitiallyUnownedClass parent_class;
/* Non overridable class methods to set and get per class arguments */
void (*set_arg) (GtkObject *object,