⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 273486 in webkit


Ignore:
Timestamp:
Feb 25, 2021, 9:03:44 AM (6 years ago)
Author:
Lauro Moura
Message:

Unreviewed. GLib debug buildfix after r273477

  • dom/EventContext.cpp:

(WebCore::EventContext::handleLocalEvents const):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r273483 r273486  
     12021-02-25  Lauro Moura  <lmoura@igalia.com>
     2
     3        Unreviewed. GLib debug buildfix after r273477
     4
     5        * dom/EventContext.cpp:
     6        (WebCore::EventContext::handleLocalEvents const):
     7
    182021-02-25  Alexander Mikhaylenko  <alexm@gnome.org>
    29
  • trunk/Source/WebCore/dom/EventContext.cpp

    r273477 r273486  
    5858            for (size_t i = 0; i < length; ++i)
    5959                ASSERT(!isUnreachableNode(downcast<Node>(touchList->item(i)->target())));
    60         }
    61         checkReachability(m_touches);
    62         checkReachability(m_targetTouches);
    63         checkReachability(m_changedTouches);
     60        };
     61        checkReachability(*m_touches);
     62        checkReachability(*m_targetTouches);
     63        checkReachability(*m_changedTouches);
    6464#endif
    6565
Note: See TracChangeset for help on using the changeset viewer.