19 class LogViewerPage(ConfigurationPageBase, Ui_LogViewerPage): |
19 class LogViewerPage(ConfigurationPageBase, Ui_LogViewerPage): |
20 """ |
20 """ |
21 Class implementing the Log Viewer configuration page. |
21 Class implementing the Log Viewer configuration page. |
22 """ |
22 """ |
23 |
23 |
24 def __init__(self, parent=None): |
24 def __init__(self): |
25 """ |
25 """ |
26 Constructor |
26 Constructor |
27 |
|
28 @param parent reference to the parent widget |
|
29 @type QWidget |
|
30 """ |
27 """ |
31 super().__init__() |
28 super().__init__() |
32 self.setupUi(self) |
29 self.setupUi(self) |
33 self.setObjectName("LogViewerPage") |
30 self.setObjectName("LogViewerPage") |
34 |
31 |