On Friday, 20 November 2015 at 19:45:26 UTC, TheDGuy wrote:
So like this?

        public void remove(TreeIter iter)
        {
                this.remove(iter);
        }

If i do this, i get a stackoverflow error :(

Your List inherits from TreeStore correct? just get rid of your custom remove method entirely, or correctly override it

public override void remove(TreeIter iter)
{
     super.remove(iter);
}

Reply via email to