From 58030682a7951b0ab911497092ca5eee97870099 Mon Sep 17 00:00:00 2001 From: Alfons Hoogervorst Date: Wed, 30 Jul 2003 15:16:18 +0000 Subject: [PATCH] * src/common/hooks.c parameter 2 of g_hook_destroy() should really be a hook id --- ChangeLog.claws | 5 +++++ configure.ac | 2 +- src/common/hooks.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index ebba291ed..09de04398 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2003-07-30 [alfons] 0.9.3claws81 + + * src/common/hooks.c + parameter 2 of g_hook_destroy() should really be a hook id + 2003-07-30 [alfons] 0.9.3claws80 * src/common/plugin.c diff --git a/configure.ac b/configure.ac index f7ed92706..4af2a4542 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=3 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=80 +EXTRA_VERSION=81 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws else diff --git a/src/common/hooks.c b/src/common/hooks.c index 4d0604b97..72b420b91 100644 --- a/src/common/hooks.c +++ b/src/common/hooks.c @@ -88,7 +88,7 @@ void hooks_unregister_hook(const gchar *hooklist_name, debug_print("unregisted hook %d in '%s'\n", hook->hook_id, hooklist_name); - g_hook_destroy(hooklist, hook); + g_hook_destroy(hooklist, hook_id); } struct MarshalData -- 2.25.1