remove_subtree(model)
Remove the subtree of this Gtk::TreeIter instance from the model model.
# File ext/json/lib/json/editor.rb, line 176 def remove_subtree(model) while current = first_child model.remove(current) end end