diff options
Diffstat (limited to 'WebCore/html/HTMLOptionElement.cpp')
-rw-r--r-- | WebCore/html/HTMLOptionElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/html/HTMLOptionElement.cpp b/WebCore/html/HTMLOptionElement.cpp index 1e07221..fa430d3 100644 --- a/WebCore/html/HTMLOptionElement.cpp +++ b/WebCore/html/HTMLOptionElement.cpp @@ -26,12 +26,12 @@ #include "config.h" #include "HTMLOptionElement.h" +#include "Attribute.h" #include "CSSStyleSelector.h" #include "Document.h" #include "ExceptionCode.h" #include "HTMLNames.h" #include "HTMLSelectElement.h" -#include "MappedAttribute.h" #include "NodeRenderStyle.h" #include "RenderMenuList.h" #include "Text.h" @@ -134,7 +134,7 @@ int HTMLOptionElement::index() const return OptionElement::optionIndex(ownerSelectElement(), this); } -void HTMLOptionElement::parseMappedAttribute(MappedAttribute *attr) +void HTMLOptionElement::parseMappedAttribute(Attribute* attr) { if (attr->name() == selectedAttr) m_data.setSelected(!attr->isNull()); |