Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py

changeset 248
f4561c24989a
parent 110
c9a969db1469
child 425
ca5e65413fc5
child 792
a13346916170
diff -r b3da30a52337 -r f4561c24989a Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py
--- a/Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py	Fri May 14 17:23:52 2010 +0200
+++ b/Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py	Fri May 14 17:26:38 2010 +0200
@@ -17,16 +17,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)
         
         self.__ioEncoding = Preferences.getSystem("IOEncoding")
         

eric ide

mercurial