17 |
17 |
18 class SvnStatusMonitorThread(VcsStatusMonitorThread): |
18 class SvnStatusMonitorThread(VcsStatusMonitorThread): |
19 """ |
19 """ |
20 Class implementing the VCS status monitor thread class for Subversion. |
20 Class implementing the VCS status monitor thread class for Subversion. |
21 """ |
21 """ |
22 def __init__(self, interval, projectDir, vcs, parent = None): |
22 def __init__(self, interval, project, vcs, parent = None): |
23 """ |
23 """ |
24 Constructor |
24 Constructor |
25 |
25 |
26 @param interval new interval in seconds (integer) |
26 @param interval new interval in seconds (integer) |
27 @param projectDir project directory to monitor (string) |
27 @param project reference to the project object (Project) |
28 @param vcs reference to the version control object |
28 @param vcs reference to the version control object |
29 @param parent reference to the parent object (QObject) |
29 @param parent reference to the parent object (QObject) |
30 """ |
30 """ |
31 VcsStatusMonitorThread.__init__(self, interval, projectDir, vcs, parent) |
31 VcsStatusMonitorThread.__init__(self, interval, project, vcs, parent) |
32 |
32 |
33 def _performMonitor(self): |
33 def _performMonitor(self): |
34 """ |
34 """ |
35 Protected method implementing the monitoring action. |
35 Protected method implementing the monitoring action. |
36 |
36 |