X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fabout.c;h=b6c02203b312cb723d24190632431f15b4c3bf20;hb=ee08e284e9722ddc0fb785c5f9af09bcb6fa8a47;hp=91572586941dbffd0ad5c7bdd6820172de177665;hpb=8d41a603943ad04b925f99336e59b4bcbe2fafd9;p=pspp-builds.git diff --git a/src/ui/gui/about.c b/src/ui/gui/about.c index 91572586..b6c02203 100644 --- a/src/ui/gui/about.c +++ b/src/ui/gui/about.c @@ -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);