Closed shackra closed 9 years ago
You need to call (*gtk.ListStore).Set(treeIter, ...)
(doco here) with the treeIter
returned by Append
. It's a little wonky but matches the C API.
I see... How do I set the data in that gtk.TreeIter
struct?
Ohh... I see. Thanks for the clarification!
I was wondering this as the
gtk.ListStore.Append
method expression do not receive parameters.