mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 07:25:32 +00:00
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:
parent
e2ee3523de
commit
73436ba433
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue