[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

vestbo at webkit.org vestbo at webkit.org
Thu Oct 29 20:45:12 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit e24e1497e90b087233cbd160c1a42ac37c346040
Author: vestbo at webkit.org <vestbo at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 15 12:58:45 2009 +0000

    Fix the Qt build on Mac OS X
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49620 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/plugins/mac/PluginViewMac.cpp b/WebCore/plugins/mac/PluginViewMac.cpp
index 0ab91d1..6521c84 100644
--- a/WebCore/plugins/mac/PluginViewMac.cpp
+++ b/WebCore/plugins/mac/PluginViewMac.cpp
@@ -174,8 +174,8 @@ bool PluginView::platformStart()
 
 #if PLATFORM(QT)
     if (QWebPageClient* client = m_parentFrame->view()->hostWindow()->platformPageClient()) {
-        if (QWidget* window = QWidget::find(client->winId())) {
-            setPlatformPluginWidget(window);
+        if (QWidget* widget = client->ownerWidget()) {
+            setPlatformPluginWidget(widget);
         }
     }
 #endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list