Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py

changeset 248
f4561c24989a
parent 216
6f9713e8d570
child 417
459855d3066e
child 792
a13346916170
diff -r b3da30a52337 -r f4561c24989a Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py
--- a/Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py	Fri May 14 17:23:52 2010 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py	Fri May 14 17:26:38 2010 +0200
@@ -17,16 +17,16 @@
     """
     Class implementing the VCS status monitor thread class for Mercurial.
     """
-    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