This was doing the opposite of what it should have.

Reported by Harry Thijssen <[email protected]>.
---
 src/ui/gui/correlation-dialog.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/ui/gui/correlation-dialog.c b/src/ui/gui/correlation-dialog.c
index afc2344..84157cf 100644
--- a/src/ui/gui/correlation-dialog.c
+++ b/src/ui/gui/correlation-dialog.c
@@ -1,5 +1,5 @@
 /* PSPPIRE - a graphical user interface for PSPP.
-   Copyright (C) 2009  Free Software Foundation
+   Copyright (C) 2009, 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
@@ -164,9 +164,9 @@ generate_syntax (const struct correlation *rd)
 
 
   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->significant)))
-    g_string_append (string, " NOSIG");
-  else
     g_string_append (string, " SIG");
+  else
+    g_string_append (string, " NOSIG");
 
 
   g_string_append (string, ".\n");
-- 
1.7.1


_______________________________________________
pspp-dev mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/pspp-dev

Reply via email to