Title: [143127] trunk/Source/WebCore
Revision
143127
Author
[email protected]
Date
2013-02-17 01:14:58 -0800 (Sun, 17 Feb 2013)

Log Message

[Qt] Unreviewed buildfix for !USE(LIBXML) builds after r143112.

* xml/parser/XMLDocumentParserQt.cpp:
(WebCore::XMLDocumentParser::XMLDocumentParser):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143126 => 143127)


--- trunk/Source/WebCore/ChangeLog	2013-02-17 08:44:14 UTC (rev 143126)
+++ trunk/Source/WebCore/ChangeLog	2013-02-17 09:14:58 UTC (rev 143127)
@@ -1,3 +1,10 @@
+2013-02-17  Csaba Osztrogonác  <[email protected]>
+
+        [Qt] Unreviewed buildfix for !USE(LIBXML) builds after r143112.
+
+        * xml/parser/XMLDocumentParserQt.cpp:
+        (WebCore::XMLDocumentParser::XMLDocumentParser):
+
 2013-02-17  Andreas Kling  <[email protected]>
 
         Optimize GlyphPage for case where all glyphs are available in the same font.

Modified: trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp (143126 => 143127)


--- trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp	2013-02-17 08:44:14 UTC (rev 143126)
+++ trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp	2013-02-17 09:14:58 UTC (rev 143127)
@@ -146,7 +146,8 @@
 
     QXmlStreamNamespaceDeclarations namespaces;
     for (Element* element = elemStack.last(); !elemStack.isEmpty(); elemStack.removeLast()) {
-        if (const ElementData* attrs = element->elementDataWithSynchronizedAttributes()) {
+        element->synchronizeAllAttributes();
+        if (const ElementData* attrs = element->elementData()) {
             for (unsigned i = 0; i < attrs->length(); i++) {
                 const Attribute* attr = attrs->attributeItem(i);
                 if (attr->localName() == "xmlns")
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to