Changeset 222705 in webkit


Ignore:
Timestamp:
Oct 2, 2017 5:17:24 AM (7 years ago)
Author:
jdiggs@igalia.com
Message:

REGRESSION(r222640) [GTK] Build broken with ATK 2.14
https://bugs.webkit.org/show_bug.cgi?id=177634

Reviewed by Michael Catanzaro.

Use ATK_CHECK_VERSION to prevent the build failure.

No new tests. This fixes a downstream build failure.

  • accessibility/atk/AXObjectCacheAtk.cpp:

(WebCore::AXObjectCache::postPlatformNotification):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r222702 r222705  
     12017-10-02  Joanmarie Diggs  <jdiggs@igalia.com>
     2
     3        REGRESSION(r222640) [GTK] Build broken with ATK 2.14
     4        https://bugs.webkit.org/show_bug.cgi?id=177634
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        Use ATK_CHECK_VERSION to prevent the build failure.
     9
     10        No new tests. This fixes a downstream build failure.
     11
     12        * accessibility/atk/AXObjectCacheAtk.cpp:
     13        (WebCore::AXObjectCache::postPlatformNotification):
     14
    1152017-10-01  Ryosuke Niwa  <rniwa@webkit.org>
    216
  • trunk/Source/WebCore/accessibility/atk/AXObjectCacheAtk.cpp

    r222640 r222705  
    272272
    273273    case AXReadOnlyStatusChanged:
     274#if ATK_CHECK_VERSION(2,15,3)
    274275        atk_object_notify_state_change(axObject, ATK_STATE_READ_ONLY, !coreObject->canSetValueAttribute());
     276#endif
    275277        break;
    276278
Note: See TracChangeset for help on using the changeset viewer.