summaryrefslogtreecommitdiff
path: root/render/list.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-08-02 19:19:43 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-08-02 19:19:43 +0000
commit0665611cc2ecca9e3796c252ebf79d7ab743a2f0 (patch)
treecd82a9c84e600d1bd2e757b8d08eb89f1db3b8dd /render/list.c
parent9d678ef7cde2fcdc1ddaa4bcc2a130e8ff07e31e (diff)
downloadnetsurf-0665611cc2ecca9e3796c252ebf79d7ab743a2f0.tar.gz
netsurf-0665611cc2ecca9e3796c252ebf79d7ab743a2f0.tar.bz2
Port to modified libcss API.
svn path=/trunk/netsurf/; revision=8997
Diffstat (limited to 'render/list.c')
-rw-r--r--render/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/render/list.c b/render/list.c
index 8f951a857..ff7c1c7ee 100644
--- a/render/list.c
+++ b/render/list.c
@@ -59,7 +59,7 @@ static const int list_counter_decimal[] = { 1, 4, 5, 9,
static struct list_counter *render_list_find_counter(const char *name);
static char *render_list_encode_counter(struct list_counter_state *state,
- enum css_list_style_type style);
+ enum css_list_style_type_e style);
static char *render_list_encode_roman(int value);
/*
@@ -292,7 +292,7 @@ char *render_list_counter(const css_computed_content_item *css_counter) {
* \return a textual representation of the counter state, or NULL on failure
*/
static char *render_list_encode_counter(struct list_counter_state *state,
- enum css_list_style_type style) {
+ enum css_list_style_type_e style) {
char *result = NULL;
int i;