[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
eric at webkit.org
eric at webkit.org
Tue Jan 5 23:52:03 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 5e417d8f212eb960ffff22b8cd2065a084a0cbc7
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