[epiphany] window-commands: Port WebKit version information in about dialog to WebKit2



commit 3fdc68f551f2fdcafd8d7d2cd0cf3045dcc1f253
Author: Carlos Garcia Campos <cgarcia igalia com>
Date:   Wed Jul 4 17:49:58 2012 +0200

    window-commands: Port WebKit version information in about dialog to WebKit2
    
    https://bugzilla.gnome.org/show_bug.cgi?id=679403

 src/window-commands.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/src/window-commands.c b/src/window-commands.c
index 0f81cf2..fc00d43 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -1312,7 +1312,11 @@ window_cmd_help_about (GtkAction *action,
 	g_key_file_free (key_file);
 
 #ifdef HAVE_WEBKIT2
-	/* TODO: WebKit Version */
+	comments = g_strdup_printf (_("Lets you view web pages and find information on the internet.\n"
+				      "Powered by WebKit %d.%d.%d"),
+				    webkit_get_major_version (),
+				    webkit_get_minor_version (),
+				    webkit_get_micro_version ());
 #else
 	comments = g_strdup_printf (_("Lets you view web pages and find information on the internet.\n"
 	                              "Powered by WebKit %d.%d.%d"),



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]