--- 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): """