From f2993e6ed037023e28837c7c666627380235bd14 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 4 Dec 2011 14:55:23 +0000 Subject: content_get_url -> hlcache_handle_get_url, content__get_url -> content_get_url svn path=/trunk/netsurf/; revision=13236 --- desktop/hotlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop/hotlist.c') diff --git a/desktop/hotlist.c b/desktop/hotlist.c index 347f4264f..788722d20 100644 --- a/desktop/hotlist.c +++ b/desktop/hotlist.c @@ -223,12 +223,12 @@ static void hotlist_visited_internal(hlcache_handle *content, struct node *node) const char *url; if (content == NULL || - content_get_url(content) == NULL || + hlcache_handle_get_url(content) == NULL || hotlist_tree == NULL) return; /* TODO: do this with a nsurl instead */ - url = nsurl_access(content_get_url(content)); + url = nsurl_access(hlcache_handle_get_url(content)); for (; node; node = tree_node_get_next(node)) { if (!tree_node_is_folder(node)) { -- cgit v1.2.3