Skip to content

Commit

Permalink
Merge r222705 - REGRESSION(r222640) [GTK] Build broken with ATK 2.14
Browse files Browse the repository at this point in the history
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):
  • Loading branch information
joanmarie authored and carlosgcampos committed Oct 17, 2017
1 parent c62c8e4 commit 05d8839
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Source/WebCore/ChangeLog
@@ -1,3 +1,17 @@
2017-10-02 Joanmarie Diggs <jdiggs@igalia.com>

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):

2017-09-28 Joanmarie Diggs <jdiggs@igalia.com>

AX: [ATK] object:state-changed notifications missing for multiple ARIA attributes
Expand Down
2 changes: 2 additions & 0 deletions Source/WebCore/accessibility/atk/AXObjectCacheAtk.cpp
Expand Up @@ -271,7 +271,9 @@ void AXObjectCache::postPlatformNotification(AccessibilityObject* coreObject, AX
break;

case AXReadOnlyStatusChanged:
#if ATK_CHECK_VERSION(2,15,3)
atk_object_notify_state_change(axObject, ATK_STATE_READ_ONLY, !coreObject->canSetValueAttribute());
#endif
break;

case AXRequiredStatusChanged:
Expand Down

0 comments on commit 05d8839

Please sign in to comment.