[project @ 2004-07-19 14:29:16 by bursa]

Make layout_inline_container() public for use of textareas.

svn path=/import/netsurf/; revision=1103
This commit is contained in:
James Bursa 2004-07-19 14:29:16 +00:00
parent 586cf7f27c
commit 946566b0b6
2 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,6 @@ static void layout_find_dimensions(int available_width,
static int layout_clear(struct box *fl, css_clear clear);
static void find_sides(struct box *fl, int y0, int y1,
int *x0, int *x1, struct box **left, struct box **right);
static bool layout_inline_container(struct box *box, int width,
struct box *cont, int cx, int cy, pool box_pool);
static int line_height(struct css_style *style);
static bool layout_line(struct box *first, int width, int *y,
int cx, int cy, struct box *cont, bool indent,

View File

@ -20,5 +20,7 @@
bool layout_document(struct box *box, int width, pool box_pool);
bool layout_block_context(struct box *block, pool box_pool);
bool layout_inline_container(struct box *box, int width,
struct box *cont, int cx, int cy, pool box_pool);
#endif