[Gtk-sharp-list] TreeModelAdapter hangs with my TreeModelImplementor class
b0rg
j.smirlis at gmail.com
Sun Mar 7 07:09:32 EST 2010
OK got it:
the problem was with GetIter. This is the corrected version
public bool GetIter (out TreeIter iter, TreePath path)
{
iter = TreeIter.Zero;
if(dview.Count == 0) return false;
iter = GetIterByRow(GetRowByPath(path));
return true;
}
--
View this message in context: http://n4.nabble.com/TreeModelAdapter-hangs-with-my-TreeModelImplementor-class-tp1583443p1583483.html
Sent from the Mono - Gtk# mailing list archive at Nabble.com.
More information about the Gtk-sharp-list
mailing list