[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 00:40:24 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit a771850f1ce3a4c2088bc6c73ce567fc3c1817f1
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 17 17:21:40 2009 +0000

    2009-12-17  Benjamin Poulain  <benjamin.poulain at nokia.com>
    
            Reviewed by Simon Hausmann.
    
            [Qt] Add support for mocking touch events with Q(GV)Launcher
            https://bugs.webkit.org/show_bug.cgi?id=32434
    
            The event delivery should go through QCoreApplication::sendEvent()
    
            * QtLauncher/main.cpp:
            (MainWindow::sendTouchEvent):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52257 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index 3bf1922..f6836d9 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,15 @@
+2009-12-17  Benjamin Poulain  <benjamin.poulain at nokia.com>
+
+        Reviewed by Simon Hausmann.
+
+        [Qt] Add support for mocking touch events with Q(GV)Launcher
+        https://bugs.webkit.org/show_bug.cgi?id=32434
+
+        The event delivery should go through QCoreApplication::sendEvent()
+
+        * QtLauncher/main.cpp:
+        (MainWindow::sendTouchEvent):
+
 2009-12-17  Kim Grönholm  <kim.gronholm at nomovok.com>
 
         Reviewed by Simon Hausmann.
diff --git a/WebKit/qt/QtLauncher/main.cpp b/WebKit/qt/QtLauncher/main.cpp
index 5e30ea4..88d17d5 100644
--- a/WebKit/qt/QtLauncher/main.cpp
+++ b/WebKit/qt/QtLauncher/main.cpp
@@ -242,7 +242,7 @@ public:
 
         QTouchEvent touchEv(type);
         touchEv.setTouchPoints(touchPoints);
-        view->page()->event(&touchEv);
+        QCoreApplication::sendEvent(view, &touchEv);
 
         // After sending the event, remove all touchpoints that were released
         if (touchPoints[0].state() == Qt::TouchPointReleased)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list