tAdd gtk_tree_selection_select_iter() - vaccinewars - be a doctor and try to vaccinate the world
 (HTM) git clone git://src.adamsgaard.dk/vaccinewars
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 3962e71bb1184132ee59e03df2b30982887a64d4
 (DIR) parent faacc26fe63bc4333bfabb89fa87b9b680d30b5f
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Thu, 26 Nov 2020 01:15:22 -0800
       
       Add gtk_tree_selection_select_iter()
       
       In our implementation iters and paths are equivalent so we
       can just use the same function for both.
       
       Diffstat:
         M src/gtkport/treeview.h              |       1 +
       
       1 file changed, 1 insertion(+), 0 deletions(-)
       ---
 (DIR) diff --git a/src/gtkport/treeview.h b/src/gtkport/treeview.h
       t@@ -128,6 +128,7 @@ void gtk_tree_selection_select_path(GtkTreeSelection *selection,
                                            GtkTreePath *path);
        void gtk_tree_selection_unselect_path(GtkTreeSelection *selection,
                                              GtkTreePath *path);
       +#define gtk_tree_selection_select_iter(sel, iter) gtk_tree_selection_select_path(sel, iter)
        
        GtkTreeViewColumn *gtk_tree_view_column_new_with_attributes
                           (const gchar *title, GtkCellRenderer *cell, ...);