Changeset 154168 in webkit


Ignore:
Timestamp:
Aug 16, 2013 1:52:43 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

<https://webkit.org/b/119880> [Qt] Build fix (broken since r154142).

Patch by Julien Brianceau <jbrianceau@nds.com> on 2013-08-16
Reviewed by Gyuyoung Kim.

Since r154142, Frame::loader() is a reference (and not a pointer anymore).

  • xml/parser/XMLDocumentParserQt.cpp:

(WebCore::XMLDocumentParser::parseStartElement):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r154166 r154168  
     12013-08-16  Julien Brianceau  <jbrianceau@nds.com>
     2
     3        <https://webkit.org/b/119880> [Qt] Build fix (broken since r154142).
     4
     5        Reviewed by Gyuyoung Kim.
     6
     7        Since r154142, Frame::loader() is a reference (and not a pointer anymore).
     8
     9        * xml/parser/XMLDocumentParserQt.cpp:
     10        (WebCore::XMLDocumentParser::parseStartElement):
     11
    1122013-08-16  Przemyslaw Szymanski  <p.szymanski3@samsung.com>
    213
  • trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp

    r154048 r154168  
    506506
    507507    if (isFirstElement && document()->frame())
    508         document()->frame()->loader()->dispatchDocumentElementAvailable();
     508        document()->frame()->loader().dispatchDocumentElementAvailable();
    509509}
    510510
Note: See TracChangeset for help on using the changeset viewer.