summaryrefslogtreecommitdiff
path: root/src/select/dispatch.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2010-03-28 00:13:41 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2010-03-28 00:13:41 +0000
commit87d7c3d3dee8d22af977e346ba1c139131152077 (patch)
treea47971e8becc97f9ca06c60a6905c8bfba0693c4 /src/select/dispatch.h
parent80cfe125983eb126a9f8afd974196cf0bf347877 (diff)
downloadlibcss-87d7c3d3dee8d22af977e346ba1c139131152077.tar.gz
libcss-87d7c3d3dee8d22af977e346ba1c139131152077.tar.bz2
Make libcss suitable for the new libwapcaplet behaviour.
svn path=/trunk/libcss/; revision=10168
Diffstat (limited to 'src/select/dispatch.h')
-rw-r--r--src/select/dispatch.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/select/dispatch.h b/src/select/dispatch.h
index 9877458..6aa61ab 100644
--- a/src/select/dispatch.h
+++ b/src/select/dispatch.h
@@ -1,7 +1,7 @@
/*
* This file is part of LibCSS
* Licensed under the MIT License,
- * http://www.opensource.org/licenses/mit-license.php
+ * http://www.opensource.org/licenses/mit-license.php
* Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
*/
@@ -36,9 +36,9 @@ extern struct prop_table {
css_error (*compose)(const css_computed_style *parent,
const css_computed_style *child,
css_computed_style *result);
-
- unsigned int inherited : 1,
- group : 2;
+ uint32_t (*destroy)(void *bytecode);
+ unsigned int inherited;
+ unsigned int group;
} prop_dispatch[CSS_N_PROPERTIES];
#endif