Remove unused code
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 12 Dec 2009 09:29:43 +0000 (10:29 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 12 Dec 2009 09:29:43 +0000 (10:29 +0100)
src/ui/gui/t-test-paired-samples.c

index 68b45fcb5a6a934378305a5bc30cbddd19b03c17..95e212aff7e21e12e95912a9ab46f9fd3824b9a0 100644 (file)
@@ -152,33 +152,6 @@ select_as_pair_member (GtkTreeIter source_iter,
     }
 }
 
-#if 0
-/* Append a new column to TV at position C, and heading TITLE */
-static void
-add_new_column (GtkTreeView *tv, const gchar *title, gint c)
-{
-  GtkTreeViewColumn *col = gtk_tree_view_column_new ();
-  GtkCellRenderer *renderer = gtk_cell_renderer_text_new ();
-
-  gtk_tree_view_column_set_min_width (col, 100);
-  gtk_tree_view_column_set_sizing (col, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
-  gtk_tree_view_column_set_resizable (col, TRUE);
-
-
-  gtk_tree_view_column_set_title (col, title);
-
-  gtk_tree_view_column_pack_start (col, renderer, TRUE);
-
-  gtk_tree_view_column_set_sizing (col, GTK_TREE_VIEW_COLUMN_FIXED);
-
-  gtk_tree_view_append_column (tv, col);
-
-  gtk_tree_view_column_add_attribute  (col, renderer, "text", c);
-}
-
-#endif
-
-
 /* Pops up the dialog box */
 void
 t_test_paired_samples_dialog (GObject *o, gpointer data)