17 |
17 |
18 def __init__(self, interval, project, vcs, parent=None): |
18 def __init__(self, interval, project, vcs, parent=None): |
19 """ |
19 """ |
20 Constructor |
20 Constructor |
21 |
21 |
22 @param interval new interval in seconds (integer) |
22 @param interval new interval in seconds |
23 @param project reference to the project object (Project) |
23 @type int |
|
24 @param project reference to the project object |
|
25 @type Project |
24 @param vcs reference to the version control object |
26 @param vcs reference to the version control object |
25 @param parent reference to the parent object (QObject) |
27 @type Hg |
|
28 @param parent reference to the parent object |
|
29 @type QObject |
26 """ |
30 """ |
27 VcsStatusMonitorThread.__init__(self, interval, project, vcs, parent) |
31 VcsStatusMonitorThread.__init__(self, interval, project, vcs, parent) |
28 |
32 |
29 self.__client = None |
33 self.__client = None |
30 |
34 |