summaryrefslogtreecommitdiff
path: root/gtk/gtkobject.h
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>1998-09-18 18:19:00 +0000
committerTim Janik <timj@src.gnome.org>1998-09-18 18:19:00 +0000
commitdc9d35402aa34e644890ee8b5f4080e0daa08e97 (patch)
tree5919b094f6a2aa1ec953e922d00d0481ba044423 /gtk/gtkobject.h
parent483bec40cc53149cf7712fed823d2bb625ffabda (diff)
downloadgdk-pixbuf-dc9d35402aa34e644890ee8b5f4080e0daa08e97.tar.gz
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.
Diffstat (limited to 'gtk/gtkobject.h')
-rw-r--r--gtk/gtkobject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkobject.h b/gtk/gtkobject.h
index 5f541a801..224378902 100644
--- a/gtk/gtkobject.h
+++ b/gtk/gtkobject.h
@@ -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,