X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-reliability.c;h=4bb78f9e1e1a089fb0dbf09682849d195e93fc25;hb=refs%2Fheads%2Fctables7;hp=9082025f7d43e0d2a170ae287180fde260f664cc;hpb=e1c4d5d0f0c63ef20927ac2cd7f9ff4e7e4cf5c5;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-reliability.c b/src/ui/gui/psppire-dialog-action-reliability.c index 9082025f7d..4bb78f9e1e 100644 --- a/src/ui/gui/psppire-dialog-action-reliability.c +++ b/src/ui/gui/psppire-dialog-action-reliability.c @@ -48,14 +48,14 @@ generate_syntax (const PsppireDialogAction *act) g_string_append (string, "\n\t/MODEL="); - if ( ALPHA == gtk_combo_box_get_active (GTK_COMBO_BOX (rd->model_combo))) + if (ALPHA == gtk_combo_box_get_active (GTK_COMBO_BOX (rd->model_combo))) g_string_append (string, "ALPHA"); else g_string_append_printf (string, "SPLIT (%d)", gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (rd->split_spinbutton)) - ); + ); - if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->scale_if_item_deleted_checkbutton))) + if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->scale_if_item_deleted_checkbutton))) g_string_append (string, "\n\t/SUMMARY = TOTAL"); g_string_append (string, ".\n"); @@ -95,7 +95,7 @@ update_split_control (PsppireDialogActionReliability *pda) 0, n_vars - 1); gtk_widget_set_sensitive (pda->split_point_hbox, - ( SPLIT == gtk_combo_box_get_active (GTK_COMBO_BOX (pda->model_combo)))); + (SPLIT == gtk_combo_box_get_active (GTK_COMBO_BOX (pda->model_combo)))); } @@ -126,7 +126,7 @@ psppire_dialog_action_reliability_activate (PsppireDialogAction *a, GVariant *pa PsppireDialogActionReliability *act = PSPPIRE_DIALOG_ACTION_RELIABILITY (a); GtkTreeModel *liststore ; - GtkBuilder *xml = builder_new ( "reliability.ui"); + GtkBuilder *xml = builder_new ("reliability.ui"); pda->dialog = get_widget_assert (xml, "reliability-dialog"); pda->source = get_widget_assert (xml, "dict-view");