From: Mark Doffman Date: Mon, 8 Jun 2009 11:24:18 +0000 (+0100) Subject: 2009-06-08 Mark Doffman X-Git-Tag: AT_SPI2_ATK_0_1_3~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7c991243cb36c8fe7e8c0dacd4e2ad2d11515bba;p=platform%2Fupstream%2Fat-spi2-atk.git 2009-06-08 Mark Doffman * pyatspi/accessible.py Fix compile error, name of refresh method incorrect. --- diff --git a/pyatspi/accessible.py b/pyatspi/accessible.py index 233d3eb..8bbe9b2 100644 --- a/pyatspi/accessible.py +++ b/pyatspi/accessible.py @@ -275,7 +275,7 @@ class Accessible(BaseProxy): def refresh(self): self._relation_set = None - self._cache.application_cache[self._app_name].refresh() + self._cache.application_cache[self._app_name]._refresh() # Register the accessible class with the factory. accessible_factory.register_accessible_class(ATSPI_ACCESSIBLE, Accessible)