~ubuntu-branches/ubuntu/quantal/gtkmm3.0/quantal

« back to all changes in this revision

Viewing changes to gtk/gtkmm/treestore.cc

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-03-01 23:42:36 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120301234236-12w6m0hkomhi7h53
Tags: 3.3.16-0ubuntu1
* New upstream version
* debian/control.in: updated the glib requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
273
273
 
274
274
void TreeStore::iter_swap(const iterator& a, const iterator& b)
275
275
{
276
 
gtk_tree_store_swap(gobj(), const_cast<GtkTreeIter*>((a).gobj()), const_cast<GtkTreeIter*>((b).gobj())); 
 
276
  gtk_tree_store_swap(gobj(), const_cast<GtkTreeIter*>((a).gobj()), const_cast<GtkTreeIter*>((b).gobj())); 
277
277
}
278
278
 
279
279
void TreeStore::clear()
280
280
{
281
 
gtk_tree_store_clear(gobj()); 
 
281
  gtk_tree_store_clear(gobj()); 
282
282
}
283
283
 
284
284
bool TreeStore::is_ancestor(const iterator& iter, const iterator& descendant) const