[atk] Fix an off-by-one in role names
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [atk] Fix an off-by-one in role names
- Date: Fri, 12 Jul 2013 13:30:04 +0000 (UTC)
commit dc75c5ce5c55d7e73531463f7de48db6c6a4330d
Author: Matthias Clasen <mclasen redhat com>
Date: Fri Jul 12 09:10:56 2013 -0400
Fix an off-by-one in role names
This was causing atk_role_for_name to return ATK_ROLE_LEVEL_BAR
when giving it an empty string, which strangely enough is something
that the lsb testsuite checks...
https://bugzilla.gnome.org/show_bug.cgi?id=704092
atk/atkobject.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/atk/atkobject.c b/atk/atkobject.c
index fe12047..2ba83a1 100755
--- a/atk/atkobject.c
+++ b/atk/atkobject.c
@@ -293,7 +293,7 @@ static const guint16 roles_offsets[] = {
751, 757, 769, 782, 791, 810, 816, 822,
830, 845, 853, 858, 866, 883, 888, 893,
913, 923, 933, 954, 976, 990, 1003, 1018,
- 1026, 1035, 1044, 1054, 1067, 1075
+ 1026, 1035, 1044, 1054, 1067, 1076
};
/* This is a static assertion */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]