summaryrefslogtreecommitdiff
path: root/glib/ghook.c
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>2001-04-29 03:04:27 +0000
committerTim Janik <timj@src.gnome.org>2001-04-29 03:04:27 +0000
commitabc5cbbe3e1f6e6bdc40d94741713e9efb6d580d (patch)
tree2bd011e12c7e43743dd154d4fd95665791e617e5 /glib/ghook.c
parent655d467602853052251c10a24f1b62ed1cf72793 (diff)
downloadglib-abc5cbbe3e1f6e6bdc40d94741713e9efb6d580d.tar.gz
made hook ids a gulong.
Sun Apr 29 00:37:34 2001 Tim Janik <timj@gtk.org> * ghook.[hc]: made hook ids a gulong. Sat Apr 28 23:39:42 2001 Tim Janik <timj@gtk.org> * gsignal.[hc]: made signal handler and emission hook ids gulongs. (signal_handlers_foreach_matched_R): only invoke callback for handlers that are not disconnected (id>0). (signal_emit_R): prevent invocation of signal handlers during the emission they were connected within. * glib-mkenums: publically installed perl-script to parse C code enums and generate descriptions thereof. * glib-mkenums.1: assorted man page.
Diffstat (limited to 'glib/ghook.c')
-rw-r--r--glib/ghook.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/glib/ghook.c b/glib/ghook.c
index 53963a135..0bce31c63 100644
--- a/glib/ghook.c
+++ b/glib/ghook.c
@@ -157,7 +157,7 @@ g_hook_destroy_link (GHookList *hook_list,
gboolean
g_hook_destroy (GHookList *hook_list,
- guint hook_id)
+ gulong hook_id)
{
GHook *hook;
@@ -451,7 +451,7 @@ g_hook_next_valid (GHookList *hook_list,
GHook*
g_hook_get (GHookList *hook_list,
- guint hook_id)
+ gulong hook_id)
{
GHook *hook;