aboutsummaryrefslogtreecommitdiff
path: root/src/crystfelindexingopts.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-08-20 11:35:06 +0200
committerThomas White <taw@physics.org>2020-08-20 11:35:06 +0200
commit82c5f584e50c49cc432619eb1924d4841d0a78eb (patch)
tree3da33c823c0a55ac4eee2b3901e826b6f39c5668 /src/crystfelindexingopts.c
parent2ffe338d663cfc1c2cdb42a63a1e50f769a508c0 (diff)
Remove unused function
Diffstat (limited to 'src/crystfelindexingopts.c')
-rw-r--r--src/crystfelindexingopts.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/crystfelindexingopts.c b/src/crystfelindexingopts.c
index 5f29a97c..af7857f5 100644
--- a/src/crystfelindexingopts.c
+++ b/src/crystfelindexingopts.c
@@ -635,28 +635,6 @@ static const char *integration_method_id(IntegrationMethod meth)
}
-static void unset_all_methods(CrystFELIndexingOpts *opts)
-{
- GtkTreePath *path;
- GtkTreeIter iter;
-
- path = gtk_tree_path_new_from_string("0");
- gtk_tree_model_get_iter(GTK_TREE_MODEL(opts->indm_store),
- &iter, path);
- gtk_tree_path_free(path);
-
- do {
- gtk_list_store_set(opts->indm_store, &iter,
- 0, FALSE,
- 2, FALSE,
- 3, FALSE,
- -1);
-
- } while ( gtk_tree_model_iter_next(GTK_TREE_MODEL(opts->indm_store),
- &iter) );
-}
-
-
void crystfel_indexing_opts_set_indexing_method_string(CrystFELIndexingOpts *opts,
const char *indm_str)
{