summaryrefslogtreecommitdiff
path: root/desktop/browser_private.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-09-10 10:30:27 +0100
committerVincent Sanders <vince@kyllikki.org>2017-09-10 10:31:06 +0100
commitec94d5f812723c586b26d4c1700b641e5cb2f7a0 (patch)
tree8d4d441246195897ce5a5e0d513c4a47828b317e /desktop/browser_private.h
parent02a8b5bca0cfe8307624dc7c2bf736069c0a2e0b (diff)
downloadnetsurf-ec94d5f812723c586b26d4c1700b641e5cb2f7a0.tar.gz
netsurf-ec94d5f812723c586b26d4c1700b641e5cb2f7a0.tar.bz2
move history bitmap thumbnail into the page information structure
Diffstat (limited to 'desktop/browser_private.h')
-rw-r--r--desktop/browser_private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/browser_private.h b/desktop/browser_private.h
index 8bbc573eb..3cdef5c89 100644
--- a/desktop/browser_private.h
+++ b/desktop/browser_private.h
@@ -45,6 +45,7 @@ struct history_page {
struct nsurl *url; /**< Page URL, never NULL. */
lwc_string *frag_id; /** Fragment identifier, or NULL. */
char *title; /**< Page title, never NULL. */
+ struct bitmap *bitmap; /**< Thumbnail bitmap, or NULL. */
};
/**
@@ -61,7 +62,6 @@ struct history_entry {
unsigned int children; /**< Number of children. */
int x; /**< Position of node. */
int y; /**< Position of node. */
- struct bitmap *bitmap; /**< Thumbnail bitmap, or 0. */
};
/**