2004-04-04 Mike Kestner <mkestner@ximian.com>

* pango/Layout.custom : increment an indexer. thanks to Moritz Balz
	for the bug report and candidate patch.

svn path=/trunk/gtk-sharp/; revision=25046
This commit is contained in:
Mike Kestner 2004-04-05 16:18:18 +00:00
parent 7b15abe5fd
commit c461182425
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-04-04 Mike Kestner <mkestner@ximian.com>
* pango/Layout.custom : increment an indexer. thanks to Moritz Balz
for the bug report and candidate patch.
2004-04-04 Mike Kestner <mkestner@ximian.com>
* generator/BoxedGen.cs : DllImport glibsharpglue for value_create.

View file

@ -19,7 +19,7 @@ public LayoutLine[] Lines {
LayoutLine[] result = new LayoutLine [list.Count];
int i = 0;
foreach (LayoutLine line in list)
result [i] = line;
result [i++] = line;
return result;
}
}