diff options
author | Tim Janik <timj@gtk.org> | 2001-05-27 18:30:30 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2001-05-27 18:30:30 +0000 |
commit | 20715207b40fb1578d85fb6169d5b0744e783af7 (patch) | |
tree | 7a91343cbcce03ee08cf719ae2437b47847ffbff /gtk/gtksignal.c | |
parent | 63666a19971c9482487d0c76c5232be8b57df515 (diff) | |
download | gdk-pixbuf-20715207b40fb1578d85fb6169d5b0744e783af7.tar.gz |
make hanlder id a gulong as in GSignal.
Sun May 20 20:07:35 2001 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc] (gtk_signal_connect_full): make hanlder id a
gulong as in GSignal.
Diffstat (limited to 'gtk/gtksignal.c')
-rw-r--r-- | gtk/gtksignal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtksignal.c b/gtk/gtksignal.c index b7ed0fb1f..8fdbf7fc2 100644 --- a/gtk/gtksignal.c +++ b/gtk/gtksignal.c @@ -130,7 +130,7 @@ gtk_signal_connect_while_alive (GtkObject *object, FALSE); } -guint +gulong gtk_signal_connect_full (GtkObject *object, const gchar *name, GtkSignalFunc func, |