On Sat, 11 Feb 2017 13:19:24 +0100, Mike Wey wrote:
TreeIter iter = new TreeIter(); if ( model.getIter(iter, childPath) )
where model is your DataModel / Liststore.
Thanks. I recognized that my code was nearly identical. But I've forgotten to create instance of class.
TreeIter iter;
To retrieve a value I was using getValue function like this.
model.getValue(iter, 0);
Is it possible to use model.get() instead of getValue(). If so what should I pass to get function.