From: Jens Axboe Date: Wed, 7 Mar 2012 13:18:28 +0000 (+0100) Subject: gfio: update about dialog X-Git-Tag: gfio-0.1~236 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=81e4ea6eb485b39917a5bbda79d22f54df624838 gfio: update about dialog Signed-off-by: Jens Axboe --- diff --git a/gfio.c b/gfio.c index 833cd93d..c793335d 100644 --- a/gfio.c +++ b/gfio.c @@ -1727,15 +1727,23 @@ static void preferences(GtkWidget *w, gpointer data) static void about_dialog(GtkWidget *w, gpointer data) { + const char *authors[] = { + "Jens Axboe ", + "Stephen Carmeron ", + NULL + }; + gtk_show_about_dialog(NULL, "program-name", "gfio", "comments", "Gtk2 UI for fio", "license", "GPLv2", + "website", "http://git.kernel.dk/?p=fio.git;a=summary", + "authors", authors, "version", fio_version_string, - "copyright", "Jens Axboe 2012", + "copyright", "© 2012 Jens Axboe ", "logo-icon-name", "fio", /* Must be last: */ - NULL, NULL, + "wrap-license", TRUE, NULL); }