diff options
| author | Simon Hausmann <simon.hausmann@digia.com> | 2012-10-23 10:25:11 +0200 |
|---|---|---|
| committer | Simon Hausmann <simon.hausmann@digia.com> | 2012-10-23 10:25:11 +0200 |
| commit | 5ea819f80c6840c492386bfafbffb059c7e2091f (patch) | |
| tree | 42ad0b1d82eff090d14278a088ea0f4840a0f938 /Source/WebCore/dom/Attr.cpp | |
| parent | 43a42f108af6bcbd91f2672731c3047c26213af1 (diff) | |
| download | qtwebkit-5ea819f80c6840c492386bfafbffb059c7e2091f.tar.gz | |
Imported WebKit commit 20434eb8eb95065803473139d8794e98a7672f75 (http://svn.webkit.org/repository/webkit/trunk@132191)
New snapshot that should fix build with latest qtbase and the QPlastiqueStyle removal
Diffstat (limited to 'Source/WebCore/dom/Attr.cpp')
| -rw-r--r-- | Source/WebCore/dom/Attr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/dom/Attr.cpp b/Source/WebCore/dom/Attr.cpp index 95c3fe052..57efe2982 100644 --- a/Source/WebCore/dom/Attr.cpp +++ b/Source/WebCore/dom/Attr.cpp @@ -130,7 +130,7 @@ void Attr::setValue(const AtomicString& value, ExceptionCode&) setValue(value); if (m_element) - m_element->didModifyAttribute(elementAttribute()); + m_element->didModifyAttribute(qualifiedName(), value); } void Attr::setNodeValue(const String& v, ExceptionCode& ec) @@ -182,7 +182,7 @@ void Attr::childrenChanged(bool, Node*, Node*, int) m_standaloneValue = newValue; if (m_element) - m_element->attributeChanged(elementAttribute()); + m_element->attributeChanged(qualifiedName(), newValue); } bool Attr::isId() const |
