kugel- commented on this pull request.
> +}
+
+
+/*
+ * Recursively copy all nodes from old parent to new parent
+ * */
+static void tree_copy_recursive(GtkTreeIter *parent_old, GtkTreeIter
*parent_new)
+{
+ gint i;
+ GtkTreeIter child;
+ GtkTreeIter parent;
+ GtkTreePath *path;
+ GtkTreeModel *model = GTK_TREE_MODEL(store_openfiles);
+
+ path = gtk_tree_model_get_path(model, parent_old);
+ gtk_tree_path_free(path);
good catch, seems pretty obvious
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1813#discussion_r308444873