Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_2_180) is shown here.
remove_subtree(model)
public
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