I have a Gtk TreeView named phoneBookTreeView
Gtk::TreeView * phoneBookTreeView;
can someone help me how to sort all the contacts inside the TreeView?
if I have a code like this for sorting the contacts byname:
void PhoneBookModel::sortByName( Glib::RefPtr<Gtk::TreeSelection> selection ){
/* Enter SortByName Function here */
}
what would be the function on it?? The PhoneBookModel is a Gtk::TreeStore.
help! help! help! thanks!