summaryrefslogtreecommitdiff
path: root/riscos/content-handlers/draw.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-09-03 09:27:42 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-09-03 09:27:42 +0000
commit9ee4f6146e06f6d142cc98a2bc600a49b4a3ddc6 (patch)
tree08e36656c3bdc25b57021fdeb86cdc65901495ed /riscos/content-handlers/draw.c
parent4539f8836e30b16982efab4e7c70191af171e7d5 (diff)
downloadnetsurf-9ee4f6146e06f6d142cc98a2bc600a49b4a3ddc6.tar.gz
netsurf-9ee4f6146e06f6d142cc98a2bc600a49b4a3ddc6.tar.bz2
Remove mime_type parameter from content handler content_type callback API
svn path=/trunk/netsurf/; revision=12704
Diffstat (limited to 'riscos/content-handlers/draw.c')
-rw-r--r--riscos/content-handlers/draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscos/content-handlers/draw.c b/riscos/content-handlers/draw.c
index 5f3865921..536ee0516 100644
--- a/riscos/content-handlers/draw.c
+++ b/riscos/content-handlers/draw.c
@@ -53,7 +53,7 @@ static void draw_destroy(struct content *c);
static bool draw_redraw(struct content *c, struct content_redraw_data *data,
const struct rect *clip, const struct redraw_context *ctx);
static nserror draw_clone(const struct content *old, struct content **newc);
-static content_type draw_content_type(lwc_string *mime_type);
+static content_type draw_content_type(void);
static const content_handler draw_content_handler = {
.create = draw_create,
@@ -281,7 +281,7 @@ nserror draw_clone(const struct content *old, struct content **newc)
return NSERROR_OK;
}
-content_type draw_content_type(lwc_string *mime_type)
+content_type draw_content_type(void)
{
return CONTENT_IMAGE;
}