mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-22 02:12:10 +03:00
Calling a hlcache_handle "content" is confusing.
svn path=/trunk/netsurf/; revision=10266
This commit is contained in:
parent
bbd757c34a
commit
f310569df4
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user