aboutsummaryrefslogtreecommitdiff
path: root/src/gui_export.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-02-12 17:20:14 +0100
committerThomas White <taw@physics.org>2021-02-12 17:27:44 +0100
commitbba796e36b0af4df00e920bc5d2efc08828fed68 (patch)
treef8e1069daa21bef144d998f64970f65ca256eebe /src/gui_export.c
parent1f896954b41f6379bc933b591164487445cde624 (diff)
GUI: Remove separate mtz-bij option
Diffstat (limited to 'src/gui_export.c')
-rw-r--r--src/gui_export.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/gui_export.c b/src/gui_export.c
index 95e3d56b..aa4582b8 100644
--- a/src/gui_export.c
+++ b/src/gui_export.c
@@ -345,14 +345,6 @@ static int export_to_mtz(struct gui_merge_result *result,
}
-static int export_to_mtz_bij(struct gui_merge_result *result,
- const char *filename, UnitCell *cell,
- double min_res, double max_res)
-{
- return 1;
-}
-
-
static int export_data(struct export_window *win, char *filename)
{
gchar *cell_filename;
@@ -405,8 +397,6 @@ static int export_data(struct export_window *win, char *filename)
if ( strcmp(format, "mtz") == 0 ) {
r = export_to_mtz(result, filename, cell, min_res, max_res);
- } else if ( strcmp(format, "mtz-bij") == 0 ) {
- r = export_to_mtz_bij(result, filename, cell, min_res, max_res);
} else if ( strcmp(format, "xds") == 0 ) {
r = export_to_xds(result, filename, cell, min_res, max_res);
} else {
@@ -495,9 +485,7 @@ gint export_sig(GtkWidget *widget, struct crystfelproject *proj)
FALSE, FALSE, 4.0);
#ifdef HAVE_LIBCCP4
gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(win->format), "mtz",
- "MTZ, plain");
- gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(win->format), "mtz-bij",
- "MTZ, Bijvoet pairs together");
+ "MTZ");
#endif
gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(win->format), "xds",
"XDS ASCII");