23 |
23 |
24 def __init__(self, logFile, showMode, parent=None): |
24 def __init__(self, logFile, showMode, parent=None): |
25 """ |
25 """ |
26 Constructor |
26 Constructor |
27 |
27 |
28 @param logFile name of the log file containing the error info (string) |
28 @param logFile name of the log file containing the error info |
|
29 @type str |
29 @param showMode flag indicating to just show the error log message |
30 @param showMode flag indicating to just show the error log message |
30 (boolean) |
31 @type bool |
31 @param parent reference to the parent widget (QWidget) |
32 @param parent reference to the parent widget |
|
33 @type QWidget |
32 """ |
34 """ |
33 super().__init__(parent) |
35 super().__init__(parent) |
34 self.setupUi(self) |
36 self.setupUi(self) |
35 self.setWindowFlags(Qt.WindowType.Window) |
37 self.setWindowFlags(Qt.WindowType.Window) |
36 |
38 |