From 9ee4f6146e06f6d142cc98a2bc600a49b4a3ddc6 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 3 Sep 2011 09:27:42 +0000 Subject: Remove mime_type parameter from content handler content_type callback API svn path=/trunk/netsurf/; revision=12704 --- cocoa/apple_image.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cocoa/apple_image.m') diff --git a/cocoa/apple_image.m b/cocoa/apple_image.m index 4eef98530..f88e6cc7e 100644 --- a/cocoa/apple_image.m +++ b/cocoa/apple_image.m @@ -48,7 +48,7 @@ static bool apple_image_redraw(struct content *c, struct content_redraw_data *da const struct rect *clip, const struct redraw_context *ctx); static nserror apple_image_clone(const struct content *old, struct content **newc); -static content_type apple_image_content_type(lwc_string *mime_type); +static content_type apple_image_content_type(void); static void *apple_image_get_internal(const struct content *c, void *context) { @@ -249,7 +249,7 @@ nserror apple_image_clone(const struct content *old, struct content **newc) return NSERROR_OK; } -content_type apple_image_content_type(lwc_string *mime_type) +content_type apple_image_content_type(void) { return CONTENT_IMAGE; } -- cgit v1.2.3