# HG changeset patch # User Eric Polino # Date 1181656444 0 # Node ID d7cd0afd3c36223e9431f4c812db63b0215b3db1 # Parent c918d59d59368aad131bcbecab4fded00313724a FIX: The help_window pointer wasn't being set to null properly in the destroy callback. diff -r c918d59d5936 -r d7cd0afd3c36 finch/libgnt/gntbindable.c --- a/finch/libgnt/gntbindable.c Tue Jun 12 13:52:33 2007 +0000 +++ b/finch/libgnt/gntbindable.c Tue Jun 12 13:54:04 2007 +0000 @@ -460,8 +460,9 @@ } static void -reset_binding_window(GntBindableClass *klass) +reset_binding_window(GntBindableClass *window, gpointer k) { + GntBindableClass *klass = GNT_BINDABLE_CLASS(k); klass->help_window = NULL; }