summaryrefslogtreecommitdiff
path: root/render/box.c
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2004-08-14 15:07:21 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2004-08-14 15:07:21 +0000
commit7264ae50e52050243d9723c47c395975e00b5e50 (patch)
tree43210eba9464a839d5cc5d76b1d60bfc7aaba467 /render/box.c
parent402c4ca66c7d95b1cdfc9eefbcb94947c807155b (diff)
downloadnetsurf-7264ae50e52050243d9723c47c395975e00b5e50.tar.gz
netsurf-7264ae50e52050243d9723c47c395975e00b5e50.tar.bz2
[project @ 2004-08-14 15:07:19 by joty]
- Rename len() to css_len2px(). - Less compiler warnings concerning float/int implicit casts. - More stddef.h type usuage. svn path=/import/netsurf/; revision=1232
Diffstat (limited to 'render/box.c')
-rw-r--r--render/box.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/render/box.c b/render/box.c
index 03f0117bf..e707e680f 100644
--- a/render/box.c
+++ b/render/box.c
@@ -124,10 +124,10 @@ static void add_option(xmlNode* n, struct form_control* current_select,
const char *text);
static void box_normalise_block(struct box *block, pool box_pool);
static void box_normalise_table(struct box *table, pool box_pool);
-void box_normalise_table_row_group(struct box *row_group,
+static void box_normalise_table_row_group(struct box *row_group,
unsigned int **row_span, unsigned int *table_columns,
pool box_pool);
-void box_normalise_table_row(struct box *row,
+static void box_normalise_table_row(struct box *row,
unsigned int **row_span, unsigned int *table_columns,
pool box_pool);
static void box_normalise_inline_container(struct box *cont, pool box_pool);