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 --- css/css.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'css') diff --git a/css/css.c b/css/css.c index 9d0014ec6..61f0b2e7e 100644 --- a/css/css.c +++ b/css/css.c @@ -65,7 +65,7 @@ static bool nscss_convert(struct content *c); static void nscss_destroy(struct content *c); static nserror nscss_clone(const struct content *old, struct content **newc); static bool nscss_matches_quirks(const struct content *c, bool quirks); -static content_type nscss_content_type(lwc_string *mime_type); +static content_type nscss_content_type(void); static void nscss_content_done(struct content_css_data *css, void *pw); static css_error nscss_handle_import(void *pw, css_stylesheet *parent, @@ -476,10 +476,9 @@ struct nscss_import *nscss_get_imports(hlcache_handle *h, uint32_t *n) /** * Compute the type of a content * - * \param mime_type MIME type * \return CONTENT_CSS */ -content_type nscss_content_type(lwc_string *mime_type) +content_type nscss_content_type(void) { return CONTENT_CSS; } -- cgit v1.2.3