Author: tack
Date: Fri Feb 15 09:35:14 2008
New Revision: 3105

Log:
InProgress.finished -> InProgress.finish


Modified:
   trunk/beacon/src/query.py
   trunk/popcorn/src/generic.py

Modified: trunk/beacon/src/query.py
==============================================================================
--- trunk/beacon/src/query.py   (original)
+++ trunk/beacon/src/query.py   Fri Feb 15 09:35:14 2008
@@ -221,7 +221,7 @@
         self.valid = True
         self.signals['changed'].emit()
         if isinstance(self._async, kaa.InProgress):
-            self._async.finished(self)
+            self._async.finish(self)
             self._async = kaa.NotFinished
 
 

Modified: trunk/popcorn/src/generic.py
==============================================================================
--- trunk/popcorn/src/generic.py        (original)
+++ trunk/popcorn/src/generic.py        Fri Feb 15 09:35:14 2008
@@ -176,7 +176,7 @@
 
         for wait, states in self._waiting[:]:
             if state in states:
-                wait.finished(self._waiting.remove((wait, states)))
+                wait.finish(self._waiting.remove((wait, states)))
 
         if old_state in (STATE_PLAYING, STATE_PAUSED, STATE_STOPPING) and \
                state in (STATE_IDLE, STATE_NOT_RUNNING, STATE_SHUTDOWN):
@@ -207,7 +207,7 @@
         for states, async, callback in self._pending[:]:
             if self._get_state() in states:
                 try:
-                    async.finished(callback())
+                    async.finish(callback())
                 except Exception, e:
                     async.throw(*sys.exc_info())
                 self._pending.remove((states, async, callback))
@@ -222,7 +222,7 @@
         async = kaa.InProgress()
         if self._get_state() in states:
             # already in a state we want
-            async.finished(True)
+            async.finish(True)
             return async
         # append to the list of waiting InProgress signals
         self._waiting.append((async, states))

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to