Change warning about test versions.
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 9 Apr 2016 08:20:23 +0000 (10:20 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 9 Apr 2016 08:20:23 +0000 (10:20 +0200)
The consensus was that this warning was too strong.  These change makes
it somewhat weaker.

src/ui/gui/psppire-window.c

index 6fb0b87c47209d6992d43db005dc0ecc9621cc29..f3c360b35e06d192e93ae1f92379824a9b223cf9 100644 (file)
@@ -111,8 +111,8 @@ psppire_window_set_title (PsppireWindow *window)
   int minor = 1;
   sscanf (bare_version, "%*d.%d.%*d", &minor);
   if (minor % 2)
-    g_string_append (title, " - UNRELEASED TEST SOFTWARE!  NOT FOR PRODUCTION USE.");
-
+    g_string_append_printf (title, " - Test version! Please report bugs to %s", PACKAGE_BUGREPORT);
+  
   gtk_window_set_title (GTK_WINDOW (window), title->str);
 
   g_string_free (title, TRUE);