From c09eb457df1962f5b014214874b2beffd69141a4 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 9 Apr 2006 23:21:13 +0000 Subject: Unify information databases svn path=/trunk/netsurf/; revision=2519 --- desktop/history_core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'desktop/history_core.c') diff --git a/desktop/history_core.c b/desktop/history_core.c index 67cee27ae..d851423f1 100644 --- a/desktop/history_core.c +++ b/desktop/history_core.c @@ -16,7 +16,7 @@ #include #include #include "netsurf/content/content.h" -#include "netsurf/content/url_store.h" +#include "netsurf/content/urldb.h" #include "netsurf/css/css.h" #include "netsurf/desktop/gui.h" #include "netsurf/desktop/history_core.h" @@ -115,7 +115,7 @@ void history_add(struct history *history, struct content *content, struct history_entry *entry; char *url; char *title; - struct bitmap *bitmap; + const struct bitmap *bitmap; assert(history); assert(content); @@ -159,7 +159,7 @@ void history_add(struct history *history, struct content *content, /* if we have a thumbnail, don't update until the page has finished * loading */ - bitmap = url_store_get_thumbnail(url); + bitmap = urldb_get_thumbnail(url); if (!bitmap) { bitmap = bitmap_create(WIDTH, HEIGHT, BITMAP_NEW | BITMAP_CLEAR_MEMORY | -- cgit v1.2.3