Modified:
trunk/gtk-sharp/ChangeLog
trunk/gtk-sharp/gtk/Object.custom
Log:
2008-05-07 Stephane Delcroix <sdel...@novell.com>
* gtk/Object.custom: swap the event removing and destroy calls.
Modified: trunk/gtk-sharp/ChangeLog
===================================================================
--- trunk/gtk-sharp/ChangeLog 2008-05-07 14:54:32 UTC (rev 102730)
+++ trunk/gtk-sharp/ChangeLog 2008-05-07 15:05:38 UTC (rev 102731)
@@ -1,3 +1,7 @@
+2008-05-07 Stephane Delcroix <sdel...@novell.com>
+
+ * gtk/Object.custom: swap the event removing and destroy calls.
+
2008-05-07 Andres G. Aragoneses <aarag...@novell.com>
* atk/Object.custom, atk/glue/object.c: Remove unneeded
Modified: trunk/gtk-sharp/gtk/Object.custom
===================================================================
--- trunk/gtk-sharp/gtk/Object.custom 2008-05-07 14:54:32 UTC (rev 102730)
+++ trunk/gtk-sharp/gtk/Object.custom 2008-05-07 15:05:38 UTC (rev 102731)
@@ -126,8 +126,8 @@
{
if (Handle == IntPtr.Zero)
return;
+ gtk_object_destroy (Handle);
InternalDestroyed -= NativeDestroyHandler;
- gtk_object_destroy (Handle);
}
[DllImport("gtksharpglue-2")]