Changeset 283306 in webkit


Ignore:
Timestamp:
Sep 30, 2021 1:42:16 AM (3 years ago)
Author:
Carlos Garcia Campos
Message:

Unreviewed GTK build fix after r283304

  • accessibility/atspi/AccessibilityAtspi.cpp:

(WebCore::AccessibilityAtspi::registerRoot): Use Ref instead of makeRef.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r283305 r283306  
     12021-09-30  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed GTK build fix after r283304
     4
     5        * accessibility/atspi/AccessibilityAtspi.cpp:
     6        (WebCore::AccessibilityAtspi::registerRoot): Use Ref instead of makeRef.
     7
    182021-09-30  Carlos Garcia Campos  <cgarcia@igalia.com>
    29
  • trunk/Source/WebCore/accessibility/atspi/AccessibilityAtspi.cpp

    r283304 r283306  
    6363{
    6464    RELEASE_ASSERT(isMainThread());
    65     m_queue->dispatch([this, rootObject = makeRef(rootObject), interfaces = WTFMove(interfaces), completionHandler = WTFMove(completionHandler)]() mutable {
     65    m_queue->dispatch([this, rootObject = Ref { rootObject }, interfaces = WTFMove(interfaces), completionHandler = WTFMove(completionHandler)]() mutable {
    6666        String reference;
    6767        if (m_connection) {
Note: See TracChangeset for help on using the changeset viewer.