482 self.__project.setData( |
482 self.__project.setData( |
483 "OTHERTOOLSPARMS", "RadonCodeMetrics", self.__data) |
483 "OTHERTOOLSPARMS", "RadonCodeMetrics", self.__data) |
484 filterList = [f.strip() for f in filterString.split(",") |
484 filterList = [f.strip() for f in filterString.split(",") |
485 if f.strip()] |
485 if f.strip()] |
486 if filterList: |
486 if filterList: |
487 for filter in filterList: |
487 for fileFilter in filterList: |
488 fileList = \ |
488 fileList = \ |
489 [f for f in fileList if not fnmatch.fnmatch(f, filter)] |
489 [f for f in fileList if not fnmatch.fnmatch(f, fileFilter)] |
490 |
490 |
491 self.start(fileList) |
491 self.start(fileList) |
492 |
492 |
493 def clear(self): |
493 def clear(self): |
494 """ |
494 """ |