From 9aca901eb1db3b6f373882fe8b707e44959e2ec1 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 29 Mar 2010 22:33:21 +0000 Subject: The convert stage of a content's state progression no longer reflows the content to the provided dimensions. It is now defined as converting the content into a state in which it is ready for use. The user of the content is now responsible for performing an initial reformat (sic) of the content before it can be redrawn. Purge width/height parameters from hlcache_handle_retrieve/content_convert/*_convert APIs. Fix up content handlers affected by the above change in semantics. Ensure that browser_window_callback performs an initial reformat of its content. svn path=/trunk/netsurf/; revision=10207 --- image/bmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'image/bmp.c') diff --git a/image/bmp.c b/image/bmp.c index 1774f945c..d4584f85d 100644 --- a/image/bmp.c +++ b/image/bmp.c @@ -64,7 +64,7 @@ bool nsbmp_create(struct content *c, const struct http_parameter *params) } -bool nsbmp_convert(struct content *c, int iwidth, int iheight) +bool nsbmp_convert(struct content *c) { bmp_result res; bmp_image *bmp; -- cgit v1.2.3