* accessible.py: Fixed bug #435177, Not saving narrow'ed interface
authorparente <parente@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Thu, 3 May 2007 12:26:39 +0000 (12:26 +0000)
committerparente <parente@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Thu, 3 May 2007 12:26:39 +0000 (12:26 +0000)
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@912 e2bd861d-eb25-0410-b326-f6ed22b6b98c

pyatspi/ChangeLog
pyatspi/accessible.py

index eaad60e..5c58a51 100644 (file)
@@ -1,5 +1,10 @@
 2007-05-03  Peter Parente  <parente@cs.unc.edu>
 
+       * accessible.py: 
+       Fixed bug #435177, Not saving narrow'ed interface
+
+2007-05-03  Peter Parente  <parente@cs.unc.edu>
+
        * registry.py: 
        Fixed bug #435282, Wrong instance variable name
 
index d1fc358..c3a5204 100644 (file)
@@ -164,7 +164,7 @@ def _makeQuery(iid):
     
     # not needed according to ORBit2 spec, but makes Java queries work
     # more reliably according to Orca experience
-    i._narrow(i.__class__)
+    i = i._narrow(i.__class__)
     if caching:
       # cache the narrow'ed result, but only if we're caching for this object
       self._icache[iid] = i