Remove redundant "break"
[pspp] / src / ui / gui / psppire-window.c
index 6fb0b87c47209d6992d43db005dc0ecc9621cc29..c268256bb003ea1c43c460d087b4454c11486c41 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);
@@ -196,7 +196,6 @@ psppire_window_set_property (GObject         *object,
                           : NULL);
       psppire_window_name_changed (window);
       break;
-      break;
     case PROP_ID:
       g_free (window->id);
       window->id = g_value_dup_string (value);