diff options
Diffstat (limited to 'hardinfo2/callbacks.c')
-rw-r--r-- | hardinfo2/callbacks.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/hardinfo2/callbacks.c b/hardinfo2/callbacks.c index b04043d2..9f5c5233 100644 --- a/hardinfo2/callbacks.c +++ b/hardinfo2/callbacks.c @@ -53,12 +53,19 @@ void cb_about() GtkWidget *about; const gchar *authors[] = { "Leandro A. F. Pereira", + "", "SCSI support by Pascal F. Martin", "MD5 implementation by Colin Plumb", "SHA1 implementation by Steve Raid", "Blowfish implementation by Paul Kocher", + "", "Some code partly based on x86cpucaps by Osamu Kayasono", - "Artwork by the GNOME Project and Tango Project", + "Vendor list based on GtkSysInfo by Pissens Sebastien", + NULL + }; + const gchar *artists[] = { + "The GNOME Project", + "Tango Project", NULL }; @@ -89,6 +96,7 @@ void cb_about() #endif gtk_about_dialog_set_authors(GTK_ABOUT_DIALOG(about), authors); + gtk_about_dialog_set_artists(GTK_ABOUT_DIALOG(about), artists); gtk_dialog_run(GTK_DIALOG(about)); gtk_widget_destroy(about); |