diff options
Diffstat (limited to 'src/bookmarks/ephy-bookmark-action.c')
-rw-r--r-- | src/bookmarks/ephy-bookmark-action.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bookmarks/ephy-bookmark-action.c b/src/bookmarks/ephy-bookmark-action.c index 39a9833e7..d035964b5 100644 --- a/src/bookmarks/ephy-bookmark-action.c +++ b/src/bookmarks/ephy-bookmark-action.c @@ -370,7 +370,7 @@ ephy_bookmark_action_activate (EphyBookmarkAction *action, char *scheme; char *host_name; - scheme = g_uri_get_scheme (location); + scheme = g_uri_parse_scheme (location); host_name = ephy_string_get_host_name (location); address = g_strconcat (scheme, "://", @@ -515,7 +515,7 @@ query_tooltip_cb (GtkWidget *proxy, char *scheme; char *host_name; - scheme = g_uri_get_scheme (location); + scheme = g_uri_parse_scheme (location); host_name = ephy_string_get_host_name (location); if (title[0] == '\0') |