diff options
Diffstat (limited to 'src/window-commands.c')
-rw-r--r-- | src/window-commands.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/window-commands.c b/src/window-commands.c index 83665c9ec..09b31e661 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -196,26 +196,6 @@ window_cmd_go_forward (GtkAction *action, } void -window_cmd_go_home (GtkAction *action, - EphyWindow *window) -{ - char *location; - - location = eel_gconf_get_string (CONF_GENERAL_HOMEPAGE); - - if (location == NULL || location[0] == '\0') - { - g_free (location); - - location = g_strdup ("about:blank"); - } - - ephy_window_load_url (window, location); - - g_free (location); -} - -void window_cmd_go_location (GtkAction *action, EphyWindow *window) { |