Index: sky/examples/raw/ink_well.dart |
diff --git a/sky/examples/raw/ink_well.dart b/sky/examples/raw/ink_well.dart |
index d2ff9f82289a06ea7aadbb7ad5b0af693c41ba3e..27eb60b23cdee6203f099e06eb6dff2e89da5899 100644 |
--- a/sky/examples/raw/ink_well.dart |
+++ b/sky/examples/raw/ink_well.dart |
@@ -41,7 +41,7 @@ class InkSplash { |
class InkWell extends RenderBox { |
final List<InkSplash> _splashes = new List<InkSplash>(); |
- void handlePointer(sky.PointerEvent event) { |
+ void handleEvent(sky.Event event) { |
switch (event.type) { |
case 'pointerdown': |
_splashes.add(new InkSplash(position: new sky.Point(event.x, event.y), |