Kaydet (Commit) 82a7c54a authored tarafından Samuel Thibault's avatar Samuel Thibault Kaydeden (comit) Katarina Behrens

a11y: Fix EDITBAR atk name

ATK_ROLE_EDITBAR's nick name is actually "edit bar" (special-cased in
atkobject.h)

Change-Id: Icd4767d3513c7a5ad1774357d026922d74a42f90
Reviewed-on: https://gerrit.libreoffice.org/58762
Tested-by: Jenkins
Reviewed-by: 's avatarKatarina Behrens <Katarina.Behrens@cib.de>
üst 2d2ccd18
......@@ -304,7 +304,7 @@ static AtkRole mapToAtkRole( sal_Int16 nRole )
{
// the accessible roles below were added to ATK in later versions,
// with role_for_name we will know if they exist in runtime.
roleMap[accessibility::AccessibleRole::EDIT_BAR] = getRoleForName("editbar");
roleMap[accessibility::AccessibleRole::EDIT_BAR] = getRoleForName("edit bar");
roleMap[accessibility::AccessibleRole::EMBEDDED_OBJECT] = getRoleForName("embedded");
roleMap[accessibility::AccessibleRole::CHART] = getRoleForName("chart");
roleMap[accessibility::AccessibleRole::CAPTION] = getRoleForName("caption");
......
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