X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Ft-test-options.c;h=17d2d525087125ad163bfa70cf080cf64a9454df;hb=65d602ed236d685ffec00ad1552a193cf47b2e4d;hp=19dda18caf5ef656020b6fcdda1c86922ff4b396;hpb=137fae2d8d88234543d9b41286c20e6ba8b2cd98;p=pspp diff --git a/src/ui/gui/t-test-options.c b/src/ui/gui/t-test-options.c index 19dda18caf..17d2d52508 100644 --- a/src/ui/gui/t-test-options.c +++ b/src/ui/gui/t-test-options.c @@ -63,9 +63,9 @@ tt_options_dialog_create (GtkWindow *parent) tto->confidence = psppire_scanf_new (_("Con_fidence Interval: %2d %%"), &tto->conf_percent); - - g_object_set (tto->confidence, - "use-underline", TRUE, + + g_object_set (tto->confidence, + "use-underline", TRUE, "mnemonic-widget", psppire_scanf_get_child (PSPPIRE_SCANF (tto->confidence), 0), NULL); @@ -105,7 +105,7 @@ tt_options_dialog_run (struct tt_options_dialog *tto) { gint response; - if ( tto->excl == EXCL_ANALYSIS) + if (tto->excl == EXCL_ANALYSIS) gtk_toggle_button_set_active (tto->analysis, TRUE); else gtk_toggle_button_set_active (tto->listwise, TRUE); @@ -114,12 +114,12 @@ tt_options_dialog_run (struct tt_options_dialog *tto) response = psppire_dialog_run (PSPPIRE_DIALOG (tto->dialog)); - if ( response == PSPPIRE_RESPONSE_CONTINUE) + if (response == PSPPIRE_RESPONSE_CONTINUE) { tto->non_default_options = TRUE; tto->confidence_interval = gtk_spin_button_get_value (tto->conf_percent); - if ( gtk_toggle_button_get_active (tto->analysis) ) + if (gtk_toggle_button_get_active (tto->analysis)) tto->excl = EXCL_ANALYSIS; else tto->excl = EXCL_LISTWISE;