From 6be9de70b8e6cd9427837cc6cae777356f1950ba Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 17 Jul 2009 18:07:42 +0000 Subject: Fix selector hash some more. It turns out that I'd forgotten how it was meant to work. svn path=/trunk/libcss/; revision=8607 --- src/stylesheet.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/stylesheet.c') diff --git a/src/stylesheet.c b/src/stylesheet.c index 9a5b9a0..7ec55b2 100644 --- a/src/stylesheet.c +++ b/src/stylesheet.c @@ -101,7 +101,8 @@ css_error css_stylesheet_create(css_language_level level, return error; } - error = css_selector_hash_create(alloc, alloc_pw, &sheet->selectors); + error = css_selector_hash_create(dict, alloc, alloc_pw, + &sheet->selectors); if (error != CSS_OK) { css_language_destroy(sheet->parser_frontend); css_parser_destroy(sheet->parser); -- cgit v1.2.3