summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-07-04 21:18:24 +0000
committerJames Bursa <james@netsurf-browser.org>2003-07-04 21:18:24 +0000
commitb8db0a695c66b5e686fb70ea30dee017e4cd6170 (patch)
tree29381e705f68c7b480dce326440f611167bac31f
parentbb71de9938ea94117edc8b2f9dfc1e49b9a2cc17 (diff)
downloadnetsurf-b8db0a695c66b5e686fb70ea30dee017e4cd6170.tar.gz
netsurf-b8db0a695c66b5e686fb70ea30dee017e4cd6170.tar.bz2
[project @ 2003-07-04 21:18:24 by bursa]
Make css_dump_style public. svn path=/import/netsurf/; revision=203
-rw-r--r--css/css.c5
-rw-r--r--css/css.h2
2 files changed, 3 insertions, 4 deletions
diff --git a/css/css.c b/css/css.c
index 07863a629..a9e2d26d9 100644
--- a/css/css.c
+++ b/css/css.c
@@ -31,11 +31,8 @@ struct decl {
struct rule * rule;
};
-void css_atimport_callback(content_msg msg, struct content *css,
+static void css_atimport_callback(content_msg msg, struct content *css,
void *p1, void *p2, const char *error);
-void css_dump_style(const struct css_style * const style);
-
-
const struct css_style css_base_style = {
0xffffff,
diff --git a/css/css.h b/css/css.h
index e5f36039d..e96cdd477 100644
--- a/css/css.h
+++ b/css/css.h
@@ -194,5 +194,7 @@ void css_cascade(struct css_style * const style, const struct css_style * const
void css_merge(struct css_style * const style, const struct css_style * const apply);
void css_parse_property_list(struct css_style * style, char * str);
colour named_colour(const char *name);
+void css_dump_style(const struct css_style * const style);
+
#endif