summaryrefslogtreecommitdiff
path: root/frontends/riscos/theme_install.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-06-10 11:53:28 +0100
committerVincent Sanders <vince@kyllikki.org>2016-06-10 11:53:28 +0100
commit3153335fdecc9b5d3e7a55d4416790504f9d96c3 (patch)
treea331d2d583c162f6c2921dbc665d96f75f64402b /frontends/riscos/theme_install.c
parent8fdf262683dab03fb01941f74cfa698b1f9d6834 (diff)
downloadnetsurf-3153335fdecc9b5d3e7a55d4416790504f9d96c3.tar.gz
netsurf-3153335fdecc9b5d3e7a55d4416790504f9d96c3.tar.bz2
remove unecessary risc os frontend usage of content headers
Diffstat (limited to 'frontends/riscos/theme_install.c')
-rw-r--r--frontends/riscos/theme_install.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontends/riscos/theme_install.c b/frontends/riscos/theme_install.c
index fee126a86..43ecb4687 100644
--- a/frontends/riscos/theme_install.c
+++ b/frontends/riscos/theme_install.c
@@ -39,13 +39,13 @@
#include "riscos/wimp_event.h"
-static hlcache_handle *theme_install_content = NULL;
+static struct hlcache_handle *theme_install_content = NULL;
static struct theme_descriptor theme_install_descriptor;
wimp_w dialog_theme_install;
static void theme_install_close(wimp_w w);
-static nserror theme_install_callback(hlcache_handle *handle,
+static nserror theme_install_callback(struct hlcache_handle *handle,
const hlcache_event *event, void *pw);
static bool theme_install_read(const char *source_data,
unsigned long source_size);
@@ -55,7 +55,7 @@ static bool theme_install_read(const char *source_data,
* Handle a CONTENT_THEME that has started loading.
*/
-void theme_install_start(hlcache_handle *c)
+void theme_install_start(struct hlcache_handle *c)
{
assert(c != NULL);
assert(content_get_type(c) == CONTENT_THEME);
@@ -83,7 +83,7 @@ void theme_install_start(hlcache_handle *c)
* Callback for fetchcache() for theme install fetches.
*/
-nserror theme_install_callback(hlcache_handle *handle,
+nserror theme_install_callback(struct hlcache_handle *handle,
const hlcache_event *event, void *pw)
{
switch (event->type) {