More eye candy.
[pspp-builds.git] / src / ui / gui / about.c
index 91572586941dbffd0ad5c7bdd6820172de177665..b6c02203b312cb723d24190632431f15b4c3bf20 100644 (file)
@@ -27,6 +27,8 @@
 #include "about.h"
 #include "helper.h"
 
+const static gchar *artists[] = { "Patrick Brunier", "Dondi Bogusky", NULL};
+
 void
 about_new (GtkMenuItem *m, GtkWindow *parent)
 {
@@ -53,6 +55,9 @@ about_new (GtkMenuItem *m, GtkWindow *parent)
   gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG (about),
                                (const gchar **) authors);
 
+  gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG (about),
+                               artists);
+
   gtk_window_set_transient_for (GTK_WINDOW (about), parent);
 
   gtk_window_set_modal (GTK_WINDOW (about), TRUE);