summaryrefslogtreecommitdiff
path: root/css/css.h
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 /css/css.h
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 'css/css.h')
-rw-r--r--css/css.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/css/css.h b/css/css.h
index c96b2a250..41772dcab 100644
--- a/css/css.h
+++ b/css/css.h
@@ -538,6 +538,6 @@ colour named_colour(const char *name);
void css_dump_style(const struct css_style * const style);
void css_dump_stylesheet(const struct css_stylesheet * stylesheet);
-float len(struct css_length * length, struct css_style * style);
+float css_len2px(struct css_length * length, struct css_style * style);
#endif