From cea13036899235f1b8b75c45b9ed825dde034ead Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sat, 6 Mar 2010 10:57:29 -0800 Subject: [PATCH] DESCRIPTIVES: In GUI, generate Z scores immediately instead of deferring. Having the Z scores variable show up immediately, but not the actual Z scores, confuses users. Reported by Douglas A Ferguson . --- src/ui/gui/descriptives-dialog.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ui/gui/descriptives-dialog.c b/src/ui/gui/descriptives-dialog.c index 9d8502de05..cad48b8885 100644 --- a/src/ui/gui/descriptives-dialog.c +++ b/src/ui/gui/descriptives-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007 Free Software Foundation + Copyright (C) 2007, 2010 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -177,6 +177,9 @@ generate_syntax (const struct descriptives_dialog *scd) g_string_append (string, "."); + if (gtk_toggle_button_get_active (scd->save_z_scores)) + g_string_append (string, "\nEXECUTE."); + text = string->str; g_string_free (string, FALSE); -- 2.30.2