summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--render/form.c3
-rw-r--r--render/html_interaction.c4
2 files changed, 0 insertions, 7 deletions
diff --git a/render/form.c b/render/form.c
index 924dbb4f7..3fc200724 100644
--- a/render/form.c
+++ b/render/form.c
@@ -1269,7 +1269,6 @@ void form_select_menu_scroll_callback(void *client_data,
struct form_control *control = client_data;
struct form_select_menu *menu = control->data.select.menu;
html_content *html = (html_content *)menu->c;
- struct browser_window *root_bw;
switch (scrollbar_data->msg) {
case SCROLLBAR_MSG_REDRAW:
@@ -1299,8 +1298,6 @@ void form_select_menu_scroll_callback(void *client_data,
DRAGGING_CONTENT_SCROLLBAR, &rect);
menu->scroll_capture = true;
-
- root_bw = browser_window_get_root(html->bw);
}
break;
case SCROLLBAR_MSG_SCROLL_FINISHED:
diff --git a/render/html_interaction.c b/render/html_interaction.c
index 56d9e83b7..81dd71ca2 100644
--- a/render/html_interaction.c
+++ b/render/html_interaction.c
@@ -817,8 +817,6 @@ void html_overflow_scroll_callback(void *client_data,
html_content *html = (html_content *)data->c;
struct box *box = data->box;
int x, y, box_x, box_y, diff_x, diff_y;
- struct browser_window *root_bw;
-
switch(scrollbar_data->msg) {
case SCROLLBAR_MSG_REDRAW:
@@ -859,8 +857,6 @@ void html_overflow_scroll_callback(void *client_data,
DRAGGING_CONTENT_SCROLLBAR, &rect);
html->scrollbar = scrollbar_data->scrollbar;
-
- root_bw = browser_window_get_root(html->bw);
}
break;
case SCROLLBAR_MSG_SCROLL_FINISHED: