summaryrefslogtreecommitdiff
path: root/src/core/node.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-09-24 23:26:04 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-09-24 23:26:04 +0000
commit7259d8fa11f3fc45adbfa9634c145ba58f7f6257 (patch)
tree341664962cc99a7ac74430bb57e8e9ad20016c20 /src/core/node.h
parentc224138caa7b6e392a14a023d74cd4683503a60e (diff)
downloadlibdom-7259d8fa11f3fc45adbfa9634c145ba58f7f6257.tar.gz
libdom-7259d8fa11f3fc45adbfa9634c145ba58f7f6257.tar.bz2
Move attributes field to struct dom_element as it doesn't apply to other node types.
svn path=/trunk/dom/; revision=3590
Diffstat (limited to 'src/core/node.h')
-rw-r--r--src/core/node.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/node.h b/src/core/node.h
index bba00f5..2297ca5 100644
--- a/src/core/node.h
+++ b/src/core/node.h
@@ -12,7 +12,6 @@
#include <dom/core/node.h>
-struct dom_attr;
struct dom_string;
/**
@@ -41,7 +40,6 @@ struct dom_node {
struct dom_node *last_child; /**< Last child node */
struct dom_node *previous; /**< Previous sibling */
struct dom_node *next; /**< Next sibling */
- struct dom_attr *attributes; /**< Node attributes */
struct dom_document *owner; /**< Owning document */