Title: [154168] trunk/Source/WebCore
Revision
154168
Author
[email protected]
Date
2013-08-16 01:52:43 -0700 (Fri, 16 Aug 2013)

Log Message

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

Patch by Julien Brianceau <[email protected]> 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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154167 => 154168)


--- trunk/Source/WebCore/ChangeLog	2013-08-16 08:05:35 UTC (rev 154167)
+++ trunk/Source/WebCore/ChangeLog	2013-08-16 08:52:43 UTC (rev 154168)
@@ -1,3 +1,14 @@
+2013-08-16  Julien Brianceau  <[email protected]>
+
+        <https://webkit.org/b/119880> [Qt] Build fix (broken since r154142).
+
+        Reviewed by Gyuyoung Kim.
+
+        Since r154142, Frame::loader() is a reference (and not a pointer anymore).
+
+        * xml/parser/XMLDocumentParserQt.cpp:
+        (WebCore::XMLDocumentParser::parseStartElement):
+
 2013-08-16  Przemyslaw Szymanski  <[email protected]>
 
         [WebGL] Vertex attribute binding validation method

Modified: trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp (154167 => 154168)


--- trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp	2013-08-16 08:05:35 UTC (rev 154167)
+++ trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp	2013-08-16 08:52:43 UTC (rev 154168)
@@ -505,7 +505,7 @@
         static_cast<HTMLHtmlElement*>(newElement.get())->insertedByParser();
 
     if (isFirstElement && document()->frame())
-        document()->frame()->loader()->dispatchDocumentElementAvailable();
+        document()->frame()->loader().dispatchDocumentElementAvailable();
 }
 
 void XMLDocumentParser::parseEndElement()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to