summaryrefslogtreecommitdiffstats
path: root/WebCore/dom/Attr.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/dom/Attr.h')
-rw-r--r--WebCore/dom/Attr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/dom/Attr.h b/WebCore/dom/Attr.h
index d71a79e..9ade207 100644
--- a/WebCore/dom/Attr.h
+++ b/WebCore/dom/Attr.h
@@ -46,7 +46,7 @@ class Attr : public ContainerNode {
friend class NamedAttrMap;
public:
- Attr(Element*, Document*, PassRefPtr<Attribute>);
+ Attr(Element*, Document*, Attribute*);
~Attr();
// Call this after calling the constructor so the
@@ -77,7 +77,7 @@ public:
virtual bool isAttributeNode() const { return true; }
virtual bool childTypeAllowed(NodeType);
- virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
+ virtual void childrenChanged(bool changedByParser = false);
virtual String toString() const;
Attribute* attr() const { return m_attribute.get(); }