Changeset 143127 in webkit


Ignore:
Timestamp:
Feb 17, 2013 1:14:58 AM (11 years ago)
Author:
Csaba Osztrogonác
Message:

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

  • xml/parser/XMLDocumentParserQt.cpp:

(WebCore::XMLDocumentParser::XMLDocumentParser):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r143125 r143127  
     12013-02-17  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [Qt] Unreviewed buildfix for !USE(LIBXML) builds after r143112.
     4
     5        * xml/parser/XMLDocumentParserQt.cpp:
     6        (WebCore::XMLDocumentParser::XMLDocumentParser):
     7
    182013-02-17  Andreas Kling  <akling@apple.com>
    29
  • trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp

    r142791 r143127  
    147147    QXmlStreamNamespaceDeclarations namespaces;
    148148    for (Element* element = elemStack.last(); !elemStack.isEmpty(); elemStack.removeLast()) {
    149         if (const ElementData* attrs = element->elementDataWithSynchronizedAttributes()) {
     149        element->synchronizeAllAttributes();
     150        if (const ElementData* attrs = element->elementData()) {
    150151            for (unsigned i = 0; i < attrs->length(); i++) {
    151152                const Attribute* attr = attrs->attributeItem(i);
Note: See TracChangeset for help on using the changeset viewer.