Index: Source/core/events/WheelEvent.cpp |
diff --git a/Source/core/events/WheelEvent.cpp b/Source/core/events/WheelEvent.cpp |
index 6b7a6a3d97521e9cc6f3208b7fadd03efabb2eb8..2da988327fc17e65201557cee4a30585f9cacbe1 100644 |
--- a/Source/core/events/WheelEvent.cpp |
+++ b/Source/core/events/WheelEvent.cpp |
@@ -74,7 +74,7 @@ WheelEvent::WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, |
bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short buttons, bool canScroll, bool hasPreciseScrollingDeltas, RailsMode railsMode) |
: MouseEvent(EventTypeNames::wheel, true, true, view, 0, screenLocation.x(), screenLocation.y(), |
windowLocation.x(), windowLocation.y(), 0, 0, ctrlKey, altKey, shiftKey, metaKey, 0, buttons, |
- nullptr, nullptr, false, PlatformMouseEvent::RealOrIndistinguishable) |
+ nullptr, false, PlatformMouseEvent::RealOrIndistinguishable) |
, m_wheelDelta(wheelTicks.x() * TickMultiplier, wheelTicks.y() * TickMultiplier) |
, m_deltaX(-rawDelta.x()) |
, m_deltaY(-rawDelta.y()) |