diff options
Diffstat (limited to 'WebCore/html/HTMLFrameElement.cpp')
-rw-r--r-- | WebCore/html/HTMLFrameElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/html/HTMLFrameElement.cpp b/WebCore/html/HTMLFrameElement.cpp index b456ac3..3ccc87f 100644 --- a/WebCore/html/HTMLFrameElement.cpp +++ b/WebCore/html/HTMLFrameElement.cpp @@ -24,10 +24,10 @@ #include "config.h" #include "HTMLFrameElement.h" +#include "Attribute.h" #include "Frame.h" #include "HTMLFrameSetElement.h" #include "HTMLNames.h" -#include "MappedAttribute.h" #include "RenderFrame.h" namespace WebCore { @@ -80,7 +80,7 @@ void HTMLFrameElement::attach() } } -void HTMLFrameElement::parseMappedAttribute(MappedAttribute* attr) +void HTMLFrameElement::parseMappedAttribute(Attribute* attr) { if (attr->name() == frameborderAttr) { m_frameBorder = attr->value().toInt(); |