Title: [154188] trunk/Source/WebCore
Revision
154188
Author
[email protected]
Date
2013-08-16 09:21:31 -0700 (Fri, 16 Aug 2013)

Log Message

Attempt to fix the Qt/MountainLion build after r154142.

* platform/graphics/qt/MediaPlayerPrivateQt.cpp:
(WebCore::MediaPlayerPrivateQt::commitLoad):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154187 => 154188)


--- trunk/Source/WebCore/ChangeLog	2013-08-16 16:13:06 UTC (rev 154187)
+++ trunk/Source/WebCore/ChangeLog	2013-08-16 16:21:31 UTC (rev 154188)
@@ -1,3 +1,10 @@
+2013-08-16  Andreas Kling  <[email protected]>
+
+        Attempt to fix the Qt/MountainLion build after r154142.
+
+        * platform/graphics/qt/MediaPlayerPrivateQt.cpp:
+        (WebCore::MediaPlayerPrivateQt::commitLoad):
+
 2013-08-16  Allan Sandfeld Jensen  <[email protected]>
 
         [Qt] Kerning in fast font path breaks letter-spacing

Modified: trunk/Source/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp (154187 => 154188)


--- trunk/Source/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp	2013-08-16 16:13:06 UTC (rev 154187)
+++ trunk/Source/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp	2013-08-16 16:21:31 UTC (rev 154188)
@@ -204,7 +204,7 @@
 
         // Grab the frame and network manager
         Frame* frame = document ? document->frame() : 0;
-        FrameLoader* frameLoader = frame ? frame->loader() : 0;
+        FrameLoader* frameLoader = frame ? &frame->loader() : 0;
         QNetworkAccessManager* manager = frameLoader ? frameLoader->networkingContext()->networkAccessManager() : 0;
 
         if (manager) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to