[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

aroben at apple.com aroben at apple.com
Wed Dec 22 15:16:40 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 0ff23687fb17b0abb9c738e11897898f7a96b83d
Author: aroben at apple.com <aroben at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 29 18:00:20 2010 +0000

    Build fix when Carbon plugins are disabled
    
    * WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:
    (WebKit::NetscapePlugin::platformHandleMouseEvent):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70903 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 3a80d57..f1780b1 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,5 +1,12 @@
 2010-10-29  Adam Roben  <aroben at apple.com>
 
+        Build fix when Carbon plugins are disabled
+
+        * WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:
+        (WebKit::NetscapePlugin::platformHandleMouseEvent):
+
+2010-10-29  Adam Roben  <aroben at apple.com>
+
         Move NPRuntime-related files into WebProcess/Plugins/Netscape
 
         Fixes <http://webkit.org/b/48645>.
diff --git a/WebKit2/WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm b/WebKit2/WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm
index a872070..bf6c7fc 100644
--- a/WebKit2/WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm
+++ b/WebKit2/WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm
@@ -393,8 +393,8 @@ bool NetscapePlugin::platformHandleMouseEvent(const WebMouseEvent& mouseEvent)
             }
 
             EventRecord event = initializeEventRecord(eventKind);
-            event.where.h = mouseEvent.globalPositionX();
-            event.where.v = mouseEvent.globalPositionY();
+            event.where.h = mouseEvent.globalPosition().x();
+            event.where.v = mouseEvent.globalPosition().y();
             return NPP_HandleEvent(&event);
         }
 #endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list