From bcb95bf5fa2c5cfd2e7c80f211f7fd6db6ce2f9a Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 12 Mar 2011 17:16:31 +0000 Subject: CSS3 Namespaces svn path=/trunk/libcss/; revision=11972 --- src/stylesheet.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/stylesheet.h') diff --git a/src/stylesheet.h b/src/stylesheet.h index 9734f02..6333d76 100644 --- a/src/stylesheet.h +++ b/src/stylesheet.h @@ -69,7 +69,7 @@ typedef union css_selector_detail_value { } css_selector_detail_value; typedef struct css_selector_detail { - lwc_string *name; /**< Interned name */ + css_qname qname; /**< Interned name */ css_selector_detail_value value; /**< Detail value */ unsigned int type : 4, /**< Type of selector */ @@ -240,12 +240,12 @@ static inline css_error css_stylesheet_style_inherit(css_style *style, } css_error css__stylesheet_selector_create(css_stylesheet *sheet, - lwc_string *name, css_selector **selector); + css_qname *qname, css_selector **selector); css_error css__stylesheet_selector_destroy(css_stylesheet *sheet, css_selector *selector); css_error css__stylesheet_selector_detail_init(css_stylesheet *sheet, - css_selector_type type, lwc_string *name, + css_selector_type type, css_qname *qname, css_selector_detail_value value, css_selector_detail_value_type value_type, bool negate, css_selector_detail *detail); -- cgit v1.2.3