diff options
Diffstat (limited to 'WebKit/wx/WebEdit.cpp')
-rw-r--r-- | WebKit/wx/WebEdit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebKit/wx/WebEdit.cpp b/WebKit/wx/WebEdit.cpp index 22ad193..503e2ed 100644 --- a/WebKit/wx/WebEdit.cpp +++ b/WebKit/wx/WebEdit.cpp @@ -3,7 +3,6 @@ #include "config.h" #include "WebEdit.h" -#include "AtomicString.h" #include "CompositeEditCommand.h" #include "Document.h" #include "Frame.h" @@ -13,6 +12,7 @@ #include "WebFrame.h" #include "WebDOMElement.h" +#include <wtf/text/AtomicString.h> namespace WebCore { @@ -55,7 +55,7 @@ wxWebEditCommand::~wxWebEditCommand() void wxWebEditCommand::SetNodeAttribute(WebDOMElement* element, const wxString& name, const wxString& value) { if (m_impl) - m_impl->setElementAttribute(element->impl(), WebCore::QualifiedName(WebCore::nullAtom, WTF::String(name), WebCore::nullAtom), WTF::String(value)); + m_impl->setElementAttribute(element->impl(), WebCore::QualifiedName(WTF::nullAtom, WTF::String(name), WTF::nullAtom), WTF::String(value)); } void wxWebEditCommand::Apply() |