From e46568349c49cadc870f5c0fc84dcce2f7c461b1 Mon Sep 17 00:00:00 2001 From: "Leandro A. F. Pereira" Date: Mon, 16 Oct 2006 17:53:16 +0000 Subject: 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) --- hardinfo2/callbacks.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'hardinfo2/callbacks.c') 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); -- cgit v1.2.3