summaryrefslogtreecommitdiff
path: root/include/libcss/select.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2010-03-27 16:10:57 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2010-03-27 16:10:57 +0000
commit80cfe125983eb126a9f8afd974196cf0bf347877 (patch)
treee6fe993a7ad2fc6859509b661d2d4f721e846e60 /include/libcss/select.h
parent46e3a946d7b2f7d68f3753a37c6f68a732a36f01 (diff)
downloadlibcss-80cfe125983eb126a9f8afd974196cf0bf347877.tar.gz
libcss-80cfe125983eb126a9f8afd974196cf0bf347877.tar.bz2
Fix libcss to use new libwapcaplet behaviour.
TODO: update the tests to include a refcounting proof svn path=/trunk/libcss/; revision=10162
Diffstat (limited to 'include/libcss/select.h')
-rw-r--r--include/libcss/select.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libcss/select.h b/include/libcss/select.h
index 931dcf1..72e9767 100644
--- a/include/libcss/select.h
+++ b/include/libcss/select.h
@@ -25,12 +25,12 @@ enum css_pseudo_element {
typedef struct css_select_handler {
css_error (*node_name)(void *pw, void *node,
- lwc_context *dict, lwc_string **name);
+ lwc_string **name);
css_error (*node_classes)(void *pw, void *node,
- lwc_context *dict, lwc_string ***classes,
+ lwc_string ***classes,
uint32_t *n_classes);
css_error (*node_id)(void *pw, void *node,
- lwc_context *dict, lwc_string **id);
+ lwc_string **id);
css_error (*named_ancestor_node)(void *pw, void *node,
lwc_string *name, void **ancestor);