[project @ 2005-04-09 09:57:19 by bursa]

Remove obsolete style_clone field from struct box (forgot this file).

svn path=/import/netsurf/; revision=1610
This commit is contained in:
James Bursa 2005-04-09 09:57:19 +00:00
parent 10fa42cd12
commit 20c4d5d114
1 changed files with 2 additions and 3 deletions

View File

@ -1317,7 +1317,6 @@ void browser_window_textarea_callback(struct browser_window *bw,
}
new_br->type = BOX_BR;
new_br->style_clone = 1;
box_insert_sibling(text_box, new_br);
memcpy(new_text, text_box, sizeof (struct box));
@ -1887,10 +1886,10 @@ void browser_window_form_select(struct browser_window *bw,
{
struct form_option *o;
int count;
assert(bw);
assert(control);
struct box *inline_box = control->box->children->children;
for (count = 0, o = control->data.select.items;