2004-11-04 Todd Berman <tberman@off.net>

* glib/ListBase.cs: In Empty, call FreeList, not Dispose.

svn path=/trunk/gtk-sharp/; revision=35665
This commit is contained in:
Todd Berman 2004-11-04 20:01:40 +00:00
parent ce819aa39f
commit 532947448e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-11-04 Todd Berman <tberman@off.net>
* glib/ListBase.cs: In Empty, call FreeList, not Dispose.
2004-11-04 Todd Berman <tberman@off.net>
* glib/ListBase.cs: Make sure to properly check if it is a

View File

@ -168,7 +168,7 @@ namespace GLib {
else
g_free (NthData (i));
}
Dispose ();
FreeList ();
}
private class ListEnumerator : IEnumerator