Take advantage of Gnulib configmake module.
[pspp-builds.git] / src / ui / gui / about.c
index d9bc2803321e0ad2efe5411dd728b840047b5b34..5b606bf5ab1c42130c56fddc53cca6b128ac22bb 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPPIRE - a graphical user interface for PSPP.
-   Copyright (C) 2006, 2007  Free Software Foundation
+   Copyright (C) 2006, 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
@@ -24,6 +24,8 @@
 #include "about.h"
 #include "helper.h"
 
+#include "gl/configmake.h"
+
 #include <gettext.h>
 #define _(msgid) gettext (msgid)
 #define N_(msgid) msgid
@@ -66,18 +68,18 @@ about_new (GtkMenuItem *m, GtkWindow *parent)
   gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG (about),
                                  "Free Software Foundation");
 
-
-  /* TRANSLATORS: Use this string to list the people who have helped with
-     translation to your language. */
-  gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG (about),
-                                          _("translator-credits"));
+  gtk_about_dialog_set_translator_credits 
+    (
+     GTK_ABOUT_DIALOG (about),
+     /* TRANSLATORS: Use this string to list the people who have helped with
+       translation to your language. */
+     _("translator-credits")
+     );
 
   gtk_window_set_transient_for (GTK_WINDOW (about), parent);
 
   gtk_window_set_modal (GTK_WINDOW (about), TRUE);
 
-  gtk_window_set_keep_above (GTK_WINDOW (about), TRUE);
-
   gtk_dialog_run (GTK_DIALOG (about));
 
   gtk_widget_hide (about);