summaryrefslogtreecommitdiff
path: root/content/handlers/html/html_internal.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2020-04-30 22:16:41 +0100
committerVincent Sanders <vince@kyllikki.org>2020-04-30 22:16:41 +0100
commit479d0cb29a74eddc95e3e2292d9d49e8dafdf46f (patch)
tree76f81e7bafc5d60e5dcb3a136b0bfa775e6fbc96 /content/handlers/html/html_internal.h
parent6b6bbad2b7765378b5135a26b3d410d6b0079966 (diff)
downloadnetsurf-479d0cb29a74eddc95e3e2292d9d49e8dafdf46f.tar.gz
netsurf-479d0cb29a74eddc95e3e2292d9d49e8dafdf46f.tar.bz2
remove unused available width and height parameters from html_fecth_object()
Diffstat (limited to 'content/handlers/html/html_internal.h')
-rw-r--r--content/handlers/html/html_internal.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/content/handlers/html/html_internal.h b/content/handlers/html/html_internal.h
index d9810177b..6b5533492 100644
--- a/content/handlers/html/html_internal.h
+++ b/content/handlers/html/html_internal.h
@@ -376,15 +376,10 @@ nserror html_css_fetcher_add_item(dom_string *data, nsurl *base_url,
* \param url URL of object to fetch (copied)
* \param box box that will contain the object
* \param permitted_types bitmap of acceptable types
- * \param available_width estimate of width of object
- * \param available_height estimate of height of object
* \param background this is a background image
* \return true on success, false on memory exhaustion
*/
-bool html_fetch_object(html_content *c, nsurl *url, struct box *box,
- content_type permitted_types,
- int available_width, int available_height,
- bool background);
+bool html_fetch_object(html_content *c, nsurl *url, struct box *box, content_type permitted_types, bool background);
nserror html_object_free_objects(html_content *html);
nserror html_object_close_objects(html_content *html);