summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-02-14 22:14:17 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-02-14 22:14:17 +0000
commitd0d70a21234ce34ab606c403cdb205897ace0cbb (patch)
tree929577f680439c8166fdd7989a03321730b04359
parentb1692363b809dfe3776866e4319b7a659ca159a4 (diff)
downloadlibcss-d0d70a21234ce34ab606c403cdb205897ace0cbb.tar.gz
libcss-d0d70a21234ce34ab606c403cdb205897ace0cbb.tar.bz2
Replace pointers to aural/page properties with pointers to void as placeholders
svn path=/trunk/libcss/; revision=6516
-rw-r--r--include/libcss/computed.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/include/libcss/computed.h b/include/libcss/computed.h
index 05959bb..37e0b41 100644
--- a/include/libcss/computed.h
+++ b/include/libcss/computed.h
@@ -13,16 +13,6 @@
#include <libcss/properties.h>
#include <libcss/types.h>
-typedef struct css_computed_aural {
- /** \todo */
- uint8_t dummy;
-} css_computed_aural;
-
-typedef struct css_computed_page {
- /** \todo */
- uint8_t dummy;
-} css_computed_page;
-
enum css_computed_content_type {
CSS_COMPUTED_CONTENT_NONE = 0,
CSS_COMPUTED_CONTENT_STRING = 1,
@@ -330,8 +320,8 @@ struct css_computed_style {
css_string *font_family;
css_computed_uncommon *uncommon;/**< Uncommon properties */
- css_computed_aural *aural; /**< Aural properties */
- css_computed_page *page; /**< Page properties */
+ void *aural; /**< Aural properties */
+ void *page; /**< Page properties */
css_allocator_fn alloc;
void *pw;