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

Changeset 286015 in webkit


Ignore:
Timestamp:
Nov 18, 2021, 10:55:49 AM (5 years ago)
Author:
commit-queue@webkit.org
Message:

[Win] Build fix after r285991
https://bugs.webkit.org/show_bug.cgi?id=233321

Unreviewed build fix.

Patch by Christopher Reid <c29reid@uwaterloo.ca> on 2021-11-18

  • accessibility/win/AXObjectCacheWin.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r286012 r286015  
     12021-11-18  Christopher Reid  <c29reid@uwaterloo.ca>
     2
     3        [Win] Build fix after r285991
     4        https://bugs.webkit.org/show_bug.cgi?id=233321
     5
     6        Unreviewed build fix.
     7
     8        * accessibility/win/AXObjectCacheWin.cpp:
     9
    1102021-11-18  Chris Dumez  <cdumez@apple.com>
    211
  • trunk/Source/WebCore/accessibility/win/AXObjectCacheWin.cpp

    r285991 r286015  
    118118    // element, not the index of a child element.
    119119
    120     ASSERT(obj->objectID() >= 1);
    121     ASSERT(obj->objectID() <= std::numeric_limits<LONG>::max());
     120    ASSERT(obj->objectID().toUInt64() >= 1);
     121    ASSERT(obj->objectID().toUInt64() <= std::numeric_limits<LONG>::max());
    122122
    123123    NotifyWinEvent(msaaEvent, page->chrome().platformPageClient(), OBJID_CLIENT, -static_cast<LONG>(obj->objectID().toUInt64()));
Note: See TracChangeset for help on using the changeset viewer.