Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py

changeset 248
f4561c24989a
parent 96
9624a110667d
child 424
d0915392cbd7
child 792
a13346916170
--- a/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py	Fri May 14 17:23:52 2010 +0200
+++ b/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py	Fri May 14 17:26:38 2010 +0200
@@ -19,16 +19,16 @@
     """
     Class implementing the VCS status monitor thread class for Subversion.
     """
-    def __init__(self, interval, projectDir, vcs, parent = None):
+    def __init__(self, interval, project, vcs, parent = None):
         """
         Constructor
         
         @param interval new interval in seconds (integer)
-        @param projectDir project directory to monitor (string)
+        @param project reference to the project object (Project)
         @param vcs reference to the version control object
         @param parent reference to the parent object (QObject)
         """
-        VcsStatusMonitorThread.__init__(self, interval, projectDir, vcs, parent)
+        VcsStatusMonitorThread.__init__(self, interval, project, vcs, parent)
     
     def _performMonitor(self):
         """

eric ide

mercurial