[Webkit-unassigned] [Bug 60258] [GTK] Make native events code more consistent
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu May 5 08:25:16 PDT 2011
https://bugs.webkit.org/show_bug.cgi?id=60258
Martin Robinson <mrobinson at webkit.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #92388|review? |review+
Flag| |
--- Comment #2 from Martin Robinson <mrobinson at webkit.org> 2011-05-05 08:25:16 PST ---
(From update of attachment 92388)
View in context: https://bugs.webkit.org/attachment.cgi?id=92388&action=review
Very nice cleanup, but I do not understand the addition of the copy constructors.
> Source/WebKit2/Shared/NativeWebMouseEvent.h:52
> + NativeWebMouseEvent(const NativeWebMouseEvent&);
Why is a copy constructor necessary now?
> Source/WebKit2/Shared/NativeWebWheelEvent.h:52
> + NativeWebWheelEvent(const NativeWebWheelEvent&);
Ditto.
> Source/WebKit2/Shared/gtk/WebEventFactory.cpp:99
> +WebMouseEvent WebEventFactory::createWebMouseEvent(const GdkEvent *event, int currentClickCount)
The asterisk should move to the left here.
> Source/WebKit2/Shared/gtk/WebEventFactory.cpp:141
> + switch (reinterpret_cast<const GdkEventScroll*>(event)->direction) {
It's probably better to write event->scroll.direction.
> Source/WebKit2/Shared/gtk/WebEventFactory.cpp:175
> + guint keyval = reinterpret_cast<const GdkEventKey*>(event)->keyval;
Ditto. event->key.keyval.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list