2005-10-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* glib/Object.cs: remove the fast path. It was causing troubles with
	MD.


svn path=/trunk/gtk-sharp/; revision=51957
This commit is contained in:
Gonzalo Paniagua Javier 2005-10-20 02:36:26 +00:00
parent b39f8218c7
commit 7ea1705778
2 changed files with 5 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2005-10-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* glib/Object.cs: remove the fast path. It was causing troubles with
MD.
2005-10-19 Mike Kestner <mkestner@novell.com>
* gnome/PrintContext.custom (SetFont): pass the font by handle, not

View File

@ -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)){