diff options
author | Tim Janik <timj@gtk.org> | 1998-07-14 07:40:15 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-07-14 07:40:15 +0000 |
commit | da355feec6ec673ac09f1b29f618bd9b444a3f47 (patch) | |
tree | a2e17e607d6d9ef2d62ac16da69d06bcda2c64e6 /gtk/gtkobject.c | |
parent | f38374c160d1fed2a4aab86a0674a7ea52b81639 (diff) | |
download | gdk-pixbuf-da355feec6ec673ac09f1b29f618bd9b444a3f47.tar.gz |
display the current cursor name.
Tue Jul 14 06:25:46 1998 Tim Janik <timj@gtk.org>
* gtk/testgtk.c (create_cursors): display the current cursor name.
* gtk/gtktypeutils.h:
* gtk/gtktypeutils.c (gtk_type_init_builtin_types): cleanups to
the fundamental type definition. the GtkArg union now only covers
the required storage types for argument values. adapted the GTK_VALUE_*
macro set. handle GTK_TYPE_UCHAR. definiton of type set bounds macros.
* gtk/gtkargcollector.c (gtk_arg_collect_value): clean ups of the
code, fixed int/float collection. fixed a bug in the sanity checking
code for GtkObjects.
* gtk/gtkbindings.c (gtk_binding_entry_add_signal): fixups of the
argument collection code.
* gtk/gtksignal.c (gtk_signal_collect_params): use the type set bounds
macros when distinguishing the return type.
Diffstat (limited to 'gtk/gtkobject.c')
-rw-r--r-- | gtk/gtkobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkobject.c b/gtk/gtkobject.c index 2773da442..dd7742939 100644 --- a/gtk/gtkobject.c +++ b/gtk/gtkobject.c @@ -310,7 +310,7 @@ gtk_object_set_arg (GtkObject *object, { gtk_signal_connect_full (object, arg_name + n + 2, - (GtkSignalFunc) GTK_VALUE_SIGNAL (*arg).f, NULL, + GTK_VALUE_SIGNAL (*arg).f, NULL, GTK_VALUE_SIGNAL (*arg).d, NULL, (arg_id == ARG_OBJECT_SIGNAL || |