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 --- amiga/plugin_hack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'amiga/plugin_hack.c') diff --git a/amiga/plugin_hack.c b/amiga/plugin_hack.c index 72cba5e60..b37dac15b 100644 --- a/amiga/plugin_hack.c +++ b/amiga/plugin_hack.c @@ -53,7 +53,7 @@ static void amiga_plugin_hack_open(struct content *c, struct browser_window *bw, struct object_params *params); static void amiga_plugin_hack_close(struct content *c); static nserror amiga_plugin_hack_clone(const struct content *old, struct content **newc); -static content_type amiga_plugin_hack_content_type(lwc_string *mime_type); +static content_type amiga_plugin_hack_content_type(void); static const content_handler amiga_plugin_hack_content_handler = { .create = amiga_plugin_hack_create, @@ -234,7 +234,7 @@ nserror amiga_plugin_hack_clone(const struct content *old, struct content **newc return NSERROR_OK; } -content_type amiga_plugin_hack_content_type(lwc_string *mime_type) +content_type amiga_plugin_hack_content_type(void) { return CONTENT_PLUGIN; } -- cgit v1.2.3