From f310569df45de6d456562f409aef18138bf0a4e1 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Wed, 7 Apr 2010 12:09:38 +0000 Subject: Calling a hlcache_handle "content" is confusing. svn path=/trunk/netsurf/; revision=10266 --- amiga/hotlist.c | 6 +++--- desktop/browser.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/amiga/hotlist.c b/amiga/hotlist.c index da1fe2399..71c5ddbba 100755 --- a/amiga/hotlist.c +++ b/amiga/hotlist.c @@ -43,11 +43,11 @@ static const struct { }; #define ENTRIES_COUNT (sizeof(default_entries) / sizeof(default_entries[0])) -void hotlist_visited(hlcache_handle *content) +void hotlist_visited(hlcache_handle *c) { - if ((!content) || (!content_get_url(content)) || (!hotlist)) + if ((!c) || (!content_get_url(c)) || (!hotlist)) return; - ami_gui_hotlist_visited(content, hotlist, hotlist->root); + ami_gui_hotlist_visited(c, hotlist, hotlist->root); } /** diff --git a/desktop/browser.h b/desktop/browser.h index d72143968..4de20fefd 100644 --- a/desktop/browser.h +++ b/desktop/browser.h @@ -279,7 +279,7 @@ bool browser_window_reload_available(struct browser_window *bw); bool browser_window_stop_available(struct browser_window *bw); /* In platform specific hotlist.c. */ -void hotlist_visited(struct hlcache_handle *content); +void hotlist_visited(struct hlcache_handle *c); /* In platform specific global_history.c. */ void global_history_add(const char *url); -- cgit v1.2.3