diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/epiphany.defs | 6 | ||||
-rw-r--r-- | src/window-commands.c | 7 |
2 files changed, 1 insertions, 12 deletions
diff --git a/src/epiphany.defs b/src/epiphany.defs index a5b5673d5..ad5c8c06d 100644 --- a/src/epiphany.defs +++ b/src/epiphany.defs @@ -860,12 +860,6 @@ ) ) -(define-method get_backend_name - (of-object "EphyEmbedSingle") - (c-name "ephy_embed_single_get_backend_name") - (return-type "const-char*") -) - ;; From ../embed/ephy-embed-type-builtins.h (define-function ephy_embed_net_state_get_type diff --git a/src/window-commands.c b/src/window-commands.c index ddcfce740..dfd512310 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -784,8 +784,6 @@ window_cmd_help_about (GtkAction *action, "51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA") }; - EphyEmbedShell *shell; - EphyEmbedSingle *single; char *licence, *comments; GKeyFile *key_file; GError *error = NULL; @@ -863,11 +861,8 @@ window_cmd_help_about (GtkAction *action, g_key_file_free (key_file); - shell = ephy_embed_shell_get_default (); - single = EPHY_EMBED_SINGLE (ephy_embed_shell_get_embed_single (shell)); - comments = g_strdup_printf (_("Lets you view web pages and find information on the internet.\n" - "Powered by %s"), ephy_embed_single_get_backend_name (single) ); + "Powered by WebKit")); licence = g_strjoin ("\n\n", _(licence_part[0]), |