From 81e4ea6eb485b39917a5bbda79d22f54df624838 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 7 Mar 2012 14:18:28 +0100 Subject: [PATCH] gfio: update about dialog Signed-off-by: Jens Axboe --- gfio.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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); } -- 2.25.1