summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2012-03-07 13:13:22 +0100
committerAlejandro Piñeiro <apinheiro@igalia.com>2012-03-07 13:13:22 +0100
commit1d07a1967c8bf2e86882caf37f869c18a23ad0a9 (patch)
tree2f5a1910036359e1f4d7d3cb1ea364f0a438a09a
parentcc7fde88eecd33946ebd4b01f7c83b89754ad714 (diff)
downloadatk-1d07a1967c8bf2e86882caf37f869c18a23ad0a9.tar.gz
Revert "Using abstract atk_object_get_name to check accessible-name notification"
See firefox bug: https://bugzilla.mozilla.org/show_bug.cgi?id=733712 This reverts commit 7ebaa51b17fbca385d9d1f3dd026bd4770852d9b.
-rwxr-xr-xatk/atkobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/atk/atkobject.c b/atk/atkobject.c
index 4c1b359..251ae6b 100755
--- a/atk/atkobject.c
+++ b/atk/atkobject.c
@@ -1015,7 +1015,7 @@ atk_object_set_name (AtkObject *accessible,
if (klass->set_name)
{
/* Do not notify for initial name setting. See bug 665870 */
- notify = (atk_object_get_name (accessible) != NULL);
+ notify = (accessible->name != NULL);
(klass->set_name) (accessible, name);
if (notify)