2008-05-07 Stephane Delcroix <sdelcroix@novell.com>

* gtk/Object.custom: swap the event removing and destroy calls.

svn path=/trunk/gtk-sharp/; revision=102731
This commit is contained in:
Stephane Delcroix 2008-05-07 15:05:38 +00:00
parent 3a8faa9a39
commit d7586a9e15
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-05-07 Stephane Delcroix <sdelcroix@novell.com>
* gtk/Object.custom: swap the event removing and destroy calls.
2008-05-07 Andres G. Aragoneses <aaragoneses@novell.com>
* atk/Object.custom, atk/glue/object.c: Remove unneeded

View File

@ -126,8 +126,8 @@
{
if (Handle == IntPtr.Zero)
return;
InternalDestroyed -= NativeDestroyHandler;
gtk_object_destroy (Handle);
InternalDestroyed -= NativeDestroyHandler;
}
[DllImport("gtksharpglue-2")]