You are probably calling RefPtr::clear() instead of TreeStore::clear(). For instance, you are doing this: treestore.clear(); instead of this: treestore->clear();
valgrind would probably have helped you to find this. Also, you should check RefPtrs (and pointers) for null before dereferencing them. -- [email protected] www.murrayc.com www.openismus.com _______________________________________________ gtkmm-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/gtkmm-list
