diff -Nru atk1.0-2.3.91/debian/changelog atk1.0-2.3.91/debian/changelog --- atk1.0-2.3.91/debian/changelog 2012-03-06 22:14:55.000000000 +0000 +++ atk1.0-2.3.91/debian/changelog 2012-03-07 11:37:40.000000000 +0000 @@ -1,3 +1,10 @@ +atk1.0 (2.3.91-0ubuntu2) precise; urgency=low + + * revert_set_name_change.patch: revert upstream change leading to + get_name, set_name loops in firefox code (lp: #948788) + + -- Sebastien Bacher Wed, 07 Mar 2012 12:34:25 +0100 + atk1.0 (2.3.91-0ubuntu1) precise; urgency=low * New upstream release diff -Nru atk1.0-2.3.91/debian/control atk1.0-2.3.91/debian/control --- atk1.0-2.3.91/debian/control 2012-03-06 22:14:58.000000000 +0000 +++ atk1.0-2.3.91/debian/control 2012-03-07 11:37:49.000000000 +0000 @@ -8,7 +8,7 @@ Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian GNOME Maintainers -Uploaders: Debian GNOME Maintainers , Emilio Pozuelo Monfort , Josselin Mouette , Laurent Bigonville , Michael Biebl , Sebastian Dröge +Uploaders: Debian GNOME Maintainers , Emilio Pozuelo Monfort , Josselin Mouette , Laurent Bigonville , Michael Biebl Vcs-Browser: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/atk1.0 Vcs-Svn: svn://svn.debian.org/svn/pkg-gnome/desktop/unstable/atk1.0 Build-Depends: debhelper (>= 8.1.3~), diff -Nru atk1.0-2.3.91/debian/patches/revert_set_name_change.patch atk1.0-2.3.91/debian/patches/revert_set_name_change.patch --- atk1.0-2.3.91/debian/patches/revert_set_name_change.patch 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.3.91/debian/patches/revert_set_name_change.patch 2012-03-07 11:33:43.000000000 +0000 @@ -0,0 +1,11 @@ +--- 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) diff -Nru atk1.0-2.3.91/debian/patches/series atk1.0-2.3.91/debian/patches/series --- atk1.0-2.3.91/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.3.91/debian/patches/series 2012-03-07 11:33:43.000000000 +0000 @@ -0,0 +1 @@ +revert_set_name_change.patch