guint col;
gboolean sel;
+ gchar *col_title;
guint *columns;
guint _n_columns;
for (col = 0; col < n_columns; col++)
{
- gtk_list_store_append (store, &iter);
- gtk_list_store_set (store, &iter,
- 0, FALSE,
- 1, col,
- 2, columns_title[col],
- -1);
+ if (g_strcmp0 (columns_title[col], "{SKIP}") != 0)
+ {
+ gtk_list_store_append (store, &iter);
+ gtk_list_store_set (store, &iter,
+ 0, FALSE,
+ 1, col,
+ 2, columns_title[col],
+ -1);
+ }
}
gtk_tree_view_set_model (GTK_TREE_VIEW (gtk_builder_get_object (builder, "treeview1")),
columns = g_malloc0 (sizeof (guint));
do
{
- gtk_tree_model_get (GTK_TREE_MODEL (store), &iter, 0, &sel, 1, &col, -1);
+ gtk_tree_model_get (GTK_TREE_MODEL (store), &iter,
+ 0, &sel,
+ 1, &col,
+ -1);
if (sel)
{
_n_columns++;
+
columns = g_realloc_n (columns, _n_columns, sizeof (guint));
columns[_n_columns - 1] = col;
}
ret = 0;
}
+ g_free (columns);
+
gtk_widget_destroy (diag);
}