Commit 5ccd006d authored by Daniel Bratell's avatar Daniel Bratell Committed by Commit Bot

Fix compilation for ATK (accessibility)

A variable wasn't given the right name inside the ATK support when
a patch consolidated 3 AX properties into single restrictions
property for accessibility objects.

R=aleventhal@chromium.org, jochen@chromium.org

Change-Id: I0c82e055e39614110cfc4f7a7299d226bd4e6ad2
Reviewed-on: https://chromium-review.googlesource.com/580927Reviewed-by: default avatarJochen Eisinger <jochen@chromium.org>
Commit-Queue: Daniel Bratell <bratell@opera.com>
Cr-Commit-Position: refs/heads/master@{#488630}
parent 0f801b88
...@@ -571,7 +571,7 @@ static AtkStateSet* browser_accessibility_ref_state_set(AtkObject* atk_object) { ...@@ -571,7 +571,7 @@ static AtkStateSet* browser_accessibility_ref_state_set(AtkObject* atk_object) {
// it's best to leave this out rather than break people's builds: // it's best to leave this out rather than break people's builds:
#if defined(ATK_CHECK_VERSION) #if defined(ATK_CHECK_VERSION)
#if ATK_CHECK_VERSION(2, 16, 0) #if ATK_CHECK_VERSION(2, 16, 0)
atk_state_set_add_state(atk_state_set, ATK_STATE_READ_ONLY); atk_state_set_add_state(state_set, ATK_STATE_READ_ONLY);
#endif #endif
#endif #endif
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment