Calling a hlcache_handle "content" is confusing.

svn path=/trunk/netsurf/; revision=10266
This commit is contained in:
Michael Drake 2010-04-07 12:09:38 +00:00
parent bbd757c34a
commit f310569df4
2 changed files with 4 additions and 4 deletions

View File

@ -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);
}
/**

View File

@ -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);