Title: [241007] trunk/Source/WebKit
Revision
241007
Author
[email protected]
Date
2019-02-05 17:44:21 -0800 (Tue, 05 Feb 2019)

Log Message

Fix a typo in r241006. Substitute Modifier for Modifiers.

* Shared/mac/NativeWebGestureEventMac.mm:
(WebKit::NativeWebGestureEvent::NativeWebGestureEvent):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (241006 => 241007)


--- trunk/Source/WebKit/ChangeLog	2019-02-06 01:42:42 UTC (rev 241006)
+++ trunk/Source/WebKit/ChangeLog	2019-02-06 01:44:21 UTC (rev 241007)
@@ -1,5 +1,12 @@
 2019-02-05  Daniel Bates  <[email protected]>
 
+        Fix a typo in r241006. Substitute Modifier for Modifiers.
+
+        * Shared/mac/NativeWebGestureEventMac.mm:
+        (WebKit::NativeWebGestureEvent::NativeWebGestureEvent):
+
+2019-02-05  Daniel Bates  <[email protected]>
+
         Attempt to fix the build following r241000
         (https://bugs.webkit.org/show_bug.cgi?id=194241)
 

Modified: trunk/Source/WebKit/Shared/mac/NativeWebGestureEventMac.mm (241006 => 241007)


--- trunk/Source/WebKit/Shared/mac/NativeWebGestureEventMac.mm	2019-02-06 01:42:42 UTC (rev 241006)
+++ trunk/Source/WebKit/Shared/mac/NativeWebGestureEventMac.mm	2019-02-06 01:44:21 UTC (rev 241007)
@@ -62,7 +62,7 @@
 NativeWebGestureEvent::NativeWebGestureEvent(NSEvent *event, NSView *view)
     : WebGestureEvent(
         webEventTypeForNSEvent(event),
-        OptionSet<WebEvent::Modifiers> { },
+        OptionSet<WebEvent::Modifier> { },
         WebCore::eventTimeStampSince1970(event),
         WebCore::IntPoint(pointForEvent(event, view)),
         event.type == NSEventTypeMagnify ? event.magnification : 0,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to