2005 |
2005 |
2006 def _createStatusMonitorThread(self, interval, project): |
2006 def _createStatusMonitorThread(self, interval, project): |
2007 """ |
2007 """ |
2008 Protected method to create an instance of the VCS status monitor thread. |
2008 Protected method to create an instance of the VCS status monitor thread. |
2009 |
2009 |
2010 @param project reference to the project object |
2010 @param project reference to the project object (Project) |
2011 @param interval check interval for the monitor thread in seconds (integer) |
2011 @param interval check interval for the monitor thread in seconds (integer) |
2012 @return reference to the monitor thread (QThread) |
2012 @return reference to the monitor thread (QThread) |
2013 """ |
2013 """ |
2014 return HgStatusMonitorThread(interval, project.ppath, self) |
2014 return HgStatusMonitorThread(interval, project, self) |