diff options
Diffstat (limited to 'WebCore/dom/SelectElement.cpp')
-rw-r--r-- | WebCore/dom/SelectElement.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/dom/SelectElement.cpp b/WebCore/dom/SelectElement.cpp index fb7d9a6..c7052b3 100644 --- a/WebCore/dom/SelectElement.cpp +++ b/WebCore/dom/SelectElement.cpp @@ -21,6 +21,7 @@ #include "config.h" #include "SelectElement.h" +#include "Attribute.h" #include "CharacterNames.h" #include "Chrome.h" #include "ChromeClient.h" @@ -30,11 +31,10 @@ #include "FormDataList.h" #include "Frame.h" #include "HTMLFormElement.h" -#include "HTMLNames.h" #include "HTMLKeygenElement.h" +#include "HTMLNames.h" #include "HTMLSelectElement.h" #include "KeyboardEvent.h" -#include "MappedAttribute.h" #include "MouseEvent.h" #include "OptionElement.h" #include "OptionGroupElement.h" @@ -443,7 +443,7 @@ void SelectElement::restoreFormControlState(SelectElementData& data, Element* el setOptionsChangedOnRenderer(data, element); } -void SelectElement::parseMultipleAttribute(SelectElementData& data, Element* element, MappedAttribute* attribute) +void SelectElement::parseMultipleAttribute(SelectElementData& data, Element* element, Attribute* attribute) { bool oldUsesMenuList = data.usesMenuList(); data.setMultiple(!attribute->isNull()); |