Title: [107918] trunk/Source/WebKit/qt
- Revision
- 107918
- Author
- hausm...@webkit.org
- Date
- 2012-02-16 02:47:32 -0800 (Thu, 16 Feb 2012)
Log Message
Unreviewed brown-paper bag build fix.
* WebCoreSupport/WebEventConversion.cpp:
(WebCore::WebKitPlatformWheelEvent::WebKitPlatformWheelEvent):
Modified Paths
Diff
Modified: trunk/Source/WebKit/qt/ChangeLog (107917 => 107918)
--- trunk/Source/WebKit/qt/ChangeLog 2012-02-16 10:46:20 UTC (rev 107917)
+++ trunk/Source/WebKit/qt/ChangeLog 2012-02-16 10:47:32 UTC (rev 107918)
@@ -1,5 +1,12 @@
2012-02-16 Simon Hausmann <simon.hausm...@nokia.com>
+ Unreviewed brown-paper bag build fix.
+
+ * WebCoreSupport/WebEventConversion.cpp:
+ (WebCore::WebKitPlatformWheelEvent::WebKitPlatformWheelEvent):
+
+2012-02-16 Simon Hausmann <simon.hausm...@nokia.com>
+
[Qt] Move event conversion functions from WebCore to WebKit
https://bugs.webkit.org/show_bug.cgi?id=78788
Modified: trunk/Source/WebKit/qt/WebCoreSupport/WebEventConversion.cpp (107917 => 107918)
--- trunk/Source/WebKit/qt/WebCoreSupport/WebEventConversion.cpp 2012-02-16 10:46:20 UTC (rev 107917)
+++ trunk/Source/WebKit/qt/WebCoreSupport/WebEventConversion.cpp 2012-02-16 10:47:32 UTC (rev 107918)
@@ -204,7 +204,7 @@
WebKitPlatformWheelEvent::WebKitPlatformWheelEvent(QGraphicsSceneWheelEvent* e)
{
m_timestamp = WTF::currentTime();
- mouseEventModifiersFromQtKeyboardModifiers(e->modifiers(), &m_modifiers);
+ mouseEventModifiersFromQtKeyboardModifiers(e->modifiers(), m_modifiers);
m_position = e->pos().toPoint();
m_globalPosition = e->screenPos();
m_granularity = ScrollByPixelWheelEvent;
@@ -215,7 +215,7 @@
WebKitPlatformWheelEvent::WebKitPlatformWheelEvent(QWheelEvent* e)
{
m_timestamp = WTF::currentTime();
- mouseEventModifiersFromQtKeyboardModifiers(e->modifiers(), &m_modifiers);
+ mouseEventModifiersFromQtKeyboardModifiers(e->modifiers(), m_modifiers);
m_position = e->pos();
m_globalPosition = e->globalPos();
m_granularity = ScrollByPixelWheelEvent;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes