Changeset 157214 in webkit


Ignore:
Timestamp:
Oct 10, 2013 4:17:22 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Fix debug build after r157210
https://bugs.webkit.org/show_bug.cgi?id=122593

Patch by Sergio Correia <Sergio Correia> on 2013-10-10
Reviewed by Andreas Kling.

No new tests, build fix.

  • dom/EventContext.cpp:

(WebCore::TouchEventContext::handleLocalEvents): Fix ASSERT, now that
event is a reference instead of a pointer.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r157213 r157214  
     12013-10-10  Sergio Correia  <sergio.correia@openbossa.org>
     2
     3        Fix debug build after r157210
     4        https://bugs.webkit.org/show_bug.cgi?id=122593
     5
     6        Reviewed by Andreas Kling.
     7
     8        No new tests, build fix.
     9
     10        * dom/EventContext.cpp:
     11        (WebCore::TouchEventContext::handleLocalEvents): Fix ASSERT, now that
     12        event is a reference instead of a pointer.
     13
    1142013-10-10  Andreas Kling  <akling@apple.com>
    215
  • trunk/Source/WebCore/dom/EventContext.cpp

    r157210 r157214  
    116116    checkReachability(m_changedTouches.get());
    117117#endif
    118     ASSERT(event->isTouchEvent());
     118    ASSERT(event.isTouchEvent());
    119119    TouchEvent& touchEvent = toTouchEvent(event);
    120120    touchEvent.setTouches(m_touches);
Note: See TracChangeset for help on using the changeset viewer.