X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-tt1s.c;h=5dd36a65dc106b8607010f0350b4fcb2b3ca48f1;hb=b100e01b8f56e04330988441bb9a1110fac57fce;hp=9fa30913e1345a27d32c2570846b560fc2ddc4dd;hpb=e5ed663e9f1998c1c2409a668288d4e5d496beda;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-tt1s.c b/src/ui/gui/psppire-dialog-action-tt1s.c index 9fa30913e1..5dd36a65dc 100644 --- a/src/ui/gui/psppire-dialog-action-tt1s.c +++ b/src/ui/gui/psppire-dialog-action-tt1s.c @@ -73,7 +73,7 @@ dialog_state_valid (gpointer data) text = gtk_entry_get_text (GTK_ENTRY (tt_d->test_value_entry)); - if ( 0 == strcmp ("", text)) + if (0 == strcmp ("", text)) return FALSE; /* Check to see if the entry is numeric */ @@ -83,7 +83,7 @@ dialog_state_valid (gpointer data) return FALSE; - if ( 0 == gtk_tree_model_get_iter_first (vars, ¬used)) + if (0 == gtk_tree_model_get_iter_first (vars, ¬used)) return FALSE; return TRUE; @@ -108,7 +108,7 @@ psppire_dialog_action_tt1s_activate (PsppireDialogAction *a, GVariant *param) PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); PsppireDialogActionTt1s *act = PSPPIRE_DIALOG_ACTION_TT1S (a); - GtkBuilder *xml = builder_new ( "t-test.ui"); + GtkBuilder *xml = builder_new ("t-test.ui"); GtkWidget *options_button = get_widget_assert (xml, "button1"); pda->dialog = get_widget_assert (xml, "t-test-one-sample-dialog");