From d7586a9e15bcf4fffd375218eeea965311fe3f39 Mon Sep 17 00:00:00 2001 From: Stephane Delcroix Date: Wed, 7 May 2008 15:05:38 +0000 Subject: [PATCH] 2008-05-07 Stephane Delcroix * gtk/Object.custom: swap the event removing and destroy calls. svn path=/trunk/gtk-sharp/; revision=102731 --- ChangeLog | 4 ++++ gtk/Object.custom | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b1c627f77..d334a5f43 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-05-07 Stephane Delcroix + + * gtk/Object.custom: swap the event removing and destroy calls. + 2008-05-07 Andres G. Aragoneses * atk/Object.custom, atk/glue/object.c: Remove unneeded diff --git a/gtk/Object.custom b/gtk/Object.custom index 595477cb6..c769cd22e 100755 --- a/gtk/Object.custom +++ b/gtk/Object.custom @@ -126,8 +126,8 @@ { if (Handle == IntPtr.Zero) return; - InternalDestroyed -= NativeDestroyHandler; gtk_object_destroy (Handle); + InternalDestroyed -= NativeDestroyHandler; } [DllImport("gtksharpglue-2")]