From d8672864f60291214b445f8a658c642086aab8bc Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 11 Dec 2020 14:21:49 +0100 Subject: result -> indexing_result Because shortly we will have merging_result as well --- src/gui_merge.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/gui_merge.c') diff --git a/src/gui_merge.c b/src/gui_merge.c index 18add58c..bea9b378 100644 --- a/src/gui_merge.c +++ b/src/gui_merge.c @@ -95,11 +95,11 @@ static int run_merging(struct crystfelproject *proj, struct crystfel_backend *be; void *job_priv; const gchar *results_name; - struct gui_result *input; + struct gui_indexing_result *input; /* Which result to merge? */ results_name = gtk_combo_box_get_active_id(GTK_COMBO_BOX(proj->results_combo)); - input = find_result_by_name(proj, results_name); + input = find_indexing_result_by_name(proj, results_name); if ( input == NULL ) { ERROR("Please select a result first\n"); return 1; @@ -402,7 +402,7 @@ static GSList *append_arg_float(GSList *args, } -static GSList *process_hkl_command_line(struct gui_result *input, +static GSList *process_hkl_command_line(struct gui_indexing_result *input, struct merging_params *params) { GSList *args = NULL; @@ -440,7 +440,7 @@ static GSList *process_hkl_command_line(struct gui_result *input, static GSList *partialator_command_line(const char *n_thread_str, - struct gui_result *input, + struct gui_indexing_result *input, struct merging_params *params) { GSList *args = NULL; @@ -505,7 +505,7 @@ static GSList *partialator_command_line(const char *n_thread_str, char **merging_command_line(const char *n_thread_str, - struct gui_result *input, + struct gui_indexing_result *input, struct merging_params *params) { GSList *args; -- cgit v1.2.3