23 class CodeStyleStatisticsDialog(QDialog, Ui_CodeStyleStatisticsDialog): |
23 class CodeStyleStatisticsDialog(QDialog, Ui_CodeStyleStatisticsDialog): |
24 """ |
24 """ |
25 Class implementing a dialog showing statistical data for the last |
25 Class implementing a dialog showing statistical data for the last |
26 code style checker run. |
26 code style checker run. |
27 """ |
27 """ |
28 def __init__ (self, statistics, parent=None): |
28 def __init__(self, statistics, parent=None): |
29 """ |
29 """ |
30 Constructor |
30 Constructor |
31 |
31 |
32 @param statistics dictionary with the statistical data |
32 @param statistics dictionary with the statistical data |
33 @param parent reference to the parent widget (QWidget) |
33 @param parent reference to the parent widget (QWidget) |