aboutsummaryrefslogtreecommitdiff
path: root/src/gui_index.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-12-11 14:21:49 +0100
committerThomas White <taw@physics.org>2020-12-11 14:21:49 +0100
commitd8672864f60291214b445f8a658c642086aab8bc (patch)
tree9bf951b5caa86dd88a366b00a4c33ce2a7812a03 /src/gui_index.c
parente9b583b2c63d14e859223bce4b56afe3fe04815c (diff)
result -> indexing_result
Because shortly we will have merging_result as well
Diffstat (limited to 'src/gui_index.c')
-rw-r--r--src/gui_index.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_index.c b/src/gui_index.c
index 91d1f15a..89fd62e7 100644
--- a/src/gui_index.c
+++ b/src/gui_index.c
@@ -62,7 +62,7 @@ void cell_explorer_sig(GtkWidget *widget, struct crystfelproject *proj)
GSubprocess *sp;
GError *error = NULL;
const gchar *results_name;
- struct gui_result *res;
+ struct gui_indexing_result *res;
const gchar **streams;
int i;
@@ -72,7 +72,7 @@ void cell_explorer_sig(GtkWidget *widget, struct crystfelproject *proj)
return;
}
- res = find_result_by_name(proj, results_name);
+ res = find_indexing_result_by_name(proj, results_name);
if ( res == NULL ) {
ERROR("Results for '%s' not found!\n", results_name);
return;