changed gpointer object_data; to GData*object_data to cure compiler

Fri Sep 18 19:58:24 1998  Tim Janik  <timj@gtk.org>

        * gtk/gtkobject.h (struct _GtkObject): changed gpointer object_data; to
        GData*object_data to cure compiler warnings.
This commit is contained in:
Tim Janik
1998-09-18 18:19:00 +00:00
committed by Tim Janik
parent 483bec40cc
commit dc9d35402a
9 changed files with 53 additions and 18 deletions

View File

@ -132,10 +132,10 @@ struct _GtkObject
*/
guint ref_count;
/* The list of signal handlers and other data
* fields for this object.
/* A list of keyed data pointers, used for e.g. the list of signal
* handlers or an object's user_data.
*/
gpointer object_data;
GData *object_data;
};
/* The GtkObjectClass is the base of the Gtk+ objects classes hierarchy,