From: Kaj-Michael Lang Date: Wed, 25 Jul 2007 11:54:25 +0000 (+0300) Subject: Fill in about dialog X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8ee0e0d5c24dd7c14c7c801c4f9d9269967f0e7;p=mapper Fill in about dialog --- diff --git a/src/cb.c b/src/cb.c index 64e5eb2..dca946f 100644 --- a/src/cb.c +++ b/src/cb.c @@ -712,17 +712,21 @@ gboolean menu_cb_help(GtkAction * action) gboolean menu_cb_about(GtkAction * action) { - printf("%s()\n", __PRETTY_FUNCTION__); - #ifdef WITH_HILDON - ossohelp_show(_osso, HELP_ID_ABOUT, OSSO_HELP_SHOW_DIALOG); +ossohelp_show(_osso, HELP_ID_ABOUT, OSSO_HELP_SHOW_DIALOG); #else - gtk_show_about_dialog(GTK_WINDOW(_window), "name", "Mapper", - "version", VERSION, NULL); +gchar *authors[]={ + "Kaj-Michael Lang","John Costigan","Cezary Jackiewicz", NULL}; + +gtk_show_about_dialog(GTK_WINDOW(_window), + "name", "Mapper", + "version", VERSION, + "copyright", "Kaj-Michael Lang", + "license", "GPL", + "authors", authors, + NULL); #endif - - vprintf("%s(): return TRUE\n", __PRETTY_FUNCTION__); - return TRUE; +return TRUE; } gboolean window_cb_key_press(GtkWidget * widget, GdkEventKey * event)