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:
parent
7b15abe5fd
commit
c461182425
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue