Chromium Code Reviews| Index: ui/views/events/event.cc |
| =================================================================== |
| --- ui/views/events/event.cc (revision 75141) |
| +++ ui/views/events/event.cc (working copy) |
| @@ -44,7 +44,7 @@ |
| View* target) |
| : Event(other.type(), other.flags()) { |
| location_ = other.location(); |
| - View::ConvertPointToView(source, target, &location_); |
| + View::ConvertPointToView(*source, *target, &location_); |
| } |
| //////////////////////////////////////////////////////////////////////////////// |