Changeset 144578 in webkit


Ignore:
Timestamp:
Mar 3, 2013 11:57:39 AM (11 years ago)
Author:
abarth@webkit.org
Message:

Attempt to fix the Qt build after r144498
https://bugs.webkit.org/show_bug.cgi?id=111272

Reviewed by Eric Seidel.

Update the Qt version of the XML parser to call the new API.

  • xml/parser/XMLDocumentParserQt.cpp:

(WebCore::XMLDocumentParser::resumeParsing):
(WebCore::XMLDocumentParser::appendFragmentSource):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r144577 r144578  
     12013-03-03  Adam Barth  <abarth@webkit.org>
     2
     3        Attempt to fix the Qt build after r144498
     4        https://bugs.webkit.org/show_bug.cgi?id=111272
     5
     6        Reviewed by Eric Seidel.
     7
     8        Update the Qt version of the XML parser to call the new API.
     9
     10        * xml/parser/XMLDocumentParserQt.cpp:
     11        (WebCore::XMLDocumentParser::resumeParsing):
     12        (WebCore::XMLDocumentParser::appendFragmentSource):
     13
    1142013-03-03  Dean Jackson  <dino@apple.com>
    215
  • trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp

    r143127 r144578  
    263263    SegmentedString rest = m_pendingSrc;
    264264    m_pendingSrc.clear();
    265     append(rest);
     265    append(rest.toString().impl());
    266266
    267267    // Finally, if finish() has been called and append() didn't result
     
    274274{
    275275    ASSERT(!m_sawFirstElement);
    276     append(String("<qxmlstreamdummyelement>"));
    277     append(source);
    278     append(String("</qxmlstreamdummyelement>"));
     276    append(String("<qxmlstreamdummyelement>").impl());
     277    append(source.impl());
     278    append(String("</qxmlstreamdummyelement>").impl());
    279279    return !hasError();
    280280}
Note: See TracChangeset for help on using the changeset viewer.