4204 """ |
4204 """ |
4205 files = [os.path.join(self.ppath, file) \ |
4205 files = [os.path.join(self.ppath, file) \ |
4206 for file in self.pdata["SOURCES"] if file.endswith(".py")] |
4206 for file in self.pdata["SOURCES"] if file.endswith(".py")] |
4207 self.codemetrics = CodeMetricsDialog() |
4207 self.codemetrics = CodeMetricsDialog() |
4208 self.codemetrics.show() |
4208 self.codemetrics.show() |
4209 self.codemetrics.start(files) |
4209 self.codemetrics.prepare(files, self) |
4210 |
4210 |
4211 def __showCodeCoverage(self): |
4211 def __showCodeCoverage(self): |
4212 """ |
4212 """ |
4213 Private slot used to show the code coverage information for the project files. |
4213 Private slot used to show the code coverage information for the project files. |
4214 """ |
4214 """ |