From 2ea577c47ecca38a0b2d15b15d242c771ce59e29 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 23 May 2020 22:09:40 +0100 Subject: remove unused is_html parameter to text selection routines --- content/handlers/html/html.c | 2 +- content/handlers/html/textselection.c | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'content/handlers/html') diff --git a/content/handlers/html/html.c b/content/handlers/html/html.c index 2c471ae40..5ae6ee502 100644 --- a/content/handlers/html/html.c +++ b/content/handlers/html/html.c @@ -493,7 +493,7 @@ html_create_html_data(html_content *c, const http_parameter *params) return NSERROR_NOMEM; } - selection_prepare(&c->sel, (struct content *)c, true); + selection_prepare(&c->sel, (struct content *)c); nerror = http_parameter_list_find_item(params, corestring_lwc_charset, &charset); if (nerror == NSERROR_OK) { diff --git a/content/handlers/html/textselection.c b/content/handlers/html/textselection.c index 06e28e11f..becebb882 100644 --- a/content/handlers/html/textselection.c +++ b/content/handlers/html/textselection.c @@ -265,13 +265,11 @@ nserror html_create_selection(struct content *c, struct selection **sel_out) { struct selection *sel; - sel = selection_create(c, true); + sel = selection_create(c); if (sel == NULL) { return NSERROR_NOMEM; } - selection_init(sel); - *sel_out = sel; return NSERROR_OK; } -- cgit v1.2.3