en/Gtk/ListStore.xml: fix example to not raise an exception.

Reported by Vinicius (|Zippo|) in #mono.

svn path=/trunk/gtk-sharp/; revision=156860
This commit is contained in:
Andrés G. Aragoneses 2010-05-06 23:20:30 +00:00
parent e2ee3523de
commit 73436ba433
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2010-05-06 Andrés G. Aragoneses <knocte@gmail.com>
* en/Gtk/ListStore.xml: fix example to not raise an exception.
Reported by Vinicius (|Zippo|) in #mono.
2009-11-28 Mike Kestner <mkestner@novell.com>
* GLib/Object.xml: remove an out of date remark from the Data prop.
@ -13,8 +18,8 @@
2006-08-09 Alp Toker <alp@atoker.com>
* GLib/Thread.xml:
* Gdk/Threads.xml: Explain proper thread awareness init.
* en/GLib/Thread.xml:
* en/Gdk/Threads.xml: Explain proper thread awareness init.
2006-03-23 Hector E. Gomez Morales <hectorgm@ciencias.unam.mx>

View file

@ -19,7 +19,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the <see c
void DumpColumnValues (ListStore store, int col)
{
foreach (object[] row in store)
Console.WriteLine ("Value of column {0} is {2}", col, row [col]);
Console.WriteLine ("Value of column {0} is {1}", col, row [col]);
}
</code>
</example>