2004-08-30 Tambet Ingo <tambet@ximian.com>

* glib/ListBase.cs : indexing bugfix for CopyTo.

svn path=/trunk/gtk-sharp/; revision=33038
This commit is contained in:
Mike Kestner 2004-08-30 13:10:44 +00:00
parent 237c8ca92d
commit b6bd5a901a
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-08-30 Tambet Ingo <tambet@ximian.com>
* glib/ListBase.cs : indexing bugfix for CopyTo.
2004-08-28 John Luke <john.luke@gmail.com>
* gdk/Gdk.metadata: change Gdk.KeyVal name return-type from

View File

@ -129,7 +129,7 @@ namespace GLib {
object[] orig = new object[Count];
int i = 0;
foreach (object o in this)
orig[i] = o;
orig[i++] = o;
orig.CopyTo (array, index);
}