summaryrefslogtreecommitdiffstats
path: root/WebCore/wml/WMLSelectElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/wml/WMLSelectElement.cpp')
-rw-r--r--WebCore/wml/WMLSelectElement.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/WebCore/wml/WMLSelectElement.cpp b/WebCore/wml/WMLSelectElement.cpp
index e6041f4..bc86d12 100644
--- a/WebCore/wml/WMLSelectElement.cpp
+++ b/WebCore/wml/WMLSelectElement.cpp
@@ -22,7 +22,6 @@
#if ENABLE(WML)
#include "WMLSelectElement.h"
-#include "CString.h"
#include "HTMLNames.h"
#include "MappedAttribute.h"
#include "OptionElement.h"
@@ -32,6 +31,7 @@
#include "WMLNames.h"
#include "WMLVariables.h"
#include <wtf/StdLibExtras.h>
+#include <wtf/text/CString.h>
namespace WebCore {
@@ -545,6 +545,11 @@ String WMLSelectElement::ivalue() const
return parseValueSubstitutingVariableReferences(getAttribute(ivalueAttr));
}
+void WMLSelectElement::listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow)
+{
+ /* Dummy implementation as listBoxSelectItem is pure virtual in SelectElement class */
+}
+
}
#endif