From 128ae1023b94dfbd72980c2bffca368f6793da9f Mon Sep 17 00:00:00 2001 From: Hixie Date: Thu, 19 Feb 2015 11:16:27 -0800 Subject: [PATCH] Specs: fix copypasta in the WheelEvent constructor Review URL: https://codereview.chromium.org/939043004 --- specs/pointer.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/specs/pointer.md b/specs/pointer.md index eaf17f27de6..5001f3d5b6f 100644 --- a/specs/pointer.md +++ b/specs/pointer.md @@ -471,12 +471,11 @@ dials. Track balls are not reported as mouse wheels. ```dart class WheelEvent extends Event { - PointerEvent({ bool bubbles, - this.wheel, - this.delta: 0.0, - this.pointer, - this.x, this.y, - }): super(bubbles: bubbles); + Event({ this.wheel, + this.delta: 0.0, + this.pointer, + this.x, this.y, + }): super(); final int wheel; final double delta; // revolutions (or fractions thereof)