diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2006-10-16 17:53:16 +0000 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2006-10-16 17:53:16 +0000 |
commit | e46568349c49cadc870f5c0fc84dcce2f7c461b1 (patch) | |
tree | 139332ea64b814967711035cf388438a2c9fa302 /hardinfo2/callbacks.c | |
parent | 3722c94e232b39d2a05ef359a60d25ac0cbe7887 (diff) |
Use g_str_equal instead of strcmp.
About box cleanups
Use g_build_filename instead of building paths on my own
Better BinReloc support (should work even if binreloc initialization fails)
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); |