summaryrefslogtreecommitdiff
path: root/src/stylesheet.c
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-26 12:41:47 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-26 12:41:47 +0000
commitff6f6cf29dbe18a2541ba73c2542253c5ffb0abc (patch)
tree18598cbaade306c47583885fa8fe91fb3aedf849 /src/stylesheet.c
parent43ce4455f710d31fbc6bfce145ffbac7c5640f48 (diff)
downloadlibcss-ff6f6cf29dbe18a2541ba73c2542253c5ffb0abc.tar.gz
libcss-ff6f6cf29dbe18a2541ba73c2542253c5ffb0abc.tar.bz2
Fix renaming of css_parser_parse_chunk from css_parser_css__parse_chunk to css__parser_parse_chunk
svn path=/trunk/libcss/; revision=11491
Diffstat (limited to 'src/stylesheet.c')
-rw-r--r--src/stylesheet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stylesheet.c b/src/stylesheet.c
index 285c6be..3a0fadd 100644
--- a/src/stylesheet.c
+++ b/src/stylesheet.c
@@ -317,7 +317,7 @@ css_error css_stylesheet_append_data(css_stylesheet *sheet,
if (sheet->parser == NULL)
return CSS_INVALID;
- return css_parser_css__parse_chunk(sheet->parser, data, len);
+ return css__parser_parse_chunk(sheet->parser, data, len);
}
/**