aboutsummaryrefslogtreecommitdiff
path: root/src/gui_merge.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_merge.c
parente9b583b2c63d14e859223bce4b56afe3fe04815c (diff)
result -> indexing_result
Because shortly we will have merging_result as well
Diffstat (limited to 'src/gui_merge.c')
-rw-r--r--src/gui_merge.c10
1 files changed, 5 insertions, 5 deletions
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;