DESCRIPTIVES: In GUI, generate Z scores immediately instead of deferring.
authorBen Pfaff <blp@cs.stanford.edu>
Sat, 6 Mar 2010 18:57:29 +0000 (10:57 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Wed, 10 Mar 2010 17:44:46 +0000 (09:44 -0800)
Having the Z scores variable show up immediately, but not the actual Z
scores, confuses users.

Reported by Douglas A Ferguson <FergusonD@cofc.edu>.

src/ui/gui/descriptives-dialog.c

index 9d8502de058b34b2cfa301338978ccc69267f4e2..cad48b888539988c40c0923aa903a4017665dc3c 100644 (file)
@@ -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);