diff --git a/ChangeLog b/ChangeLog index 1ef57695f..5b932362e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-19 Gonzalo Paniagua Javier + + * glib/Object.cs: remove the fast path. It was causing troubles with + MD. + 2005-10-19 Mike Kestner * gnome/PrintContext.custom (SetFont): pass the font by handle, not diff --git a/glib/Object.cs b/glib/Object.cs index 063515061..f9c8f8572 100644 --- a/glib/Object.cs +++ b/glib/Object.cs @@ -80,13 +80,6 @@ namespace GLib { return; disposed = true; - if (MainContext.Depth > 0) { - g_object_unref (_obj); - Objects.Remove (_obj); - GC.SuppressFinalize (this); - return; - } - lock (PendingDestroys){ PendingDestroys.Add (this); lock (typeof (Object)){