* utils.py: Fixed bug #437528, StateSet equals
authorparente <parente@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Fri, 11 May 2007 00:59:29 +0000 (00:59 +0000)
committerparente <parente@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Fri, 11 May 2007 00:59:29 +0000 (00:59 +0000)
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@925 e2bd861d-eb25-0410-b326-f6ed22b6b98c

pyatspi/ChangeLog
pyatspi/utils.py

index 8b77833..7cf0347 100644 (file)
@@ -1,5 +1,9 @@
 2007-05-10  Peter Parente  <parente@cs.unc.edu>
 
+       * utils.py: Fixed bug #437528, StateSet equals
+
+2007-05-10  Peter Parente  <parente@cs.unc.edu>
+
        * registry.py: Fixed bug #436982 again (Patch from Eitan)
 
 2007-05-09  Peter Parente  <parente@cs.unc.edu>
index 7e825f3..10da304 100644 (file)
@@ -362,7 +362,7 @@ class StateSet(Accessibility__POA.StateSet):
     @return: Are the sets equivalent in terms of their contents?
     @rtype: boolean
     '''
-    return self.state_set == self.states
+    return state_set.states == self.states
   
   def compare(self, state_set):
     '''