26 @param logFile name of the log file containing the error info (string) |
26 @param logFile name of the log file containing the error info (string) |
27 @param showMode flag indicating to just show the error log message |
27 @param showMode flag indicating to just show the error log message |
28 (boolean) |
28 (boolean) |
29 @param parent reference to the parent widget (QWidget) |
29 @param parent reference to the parent widget (QWidget) |
30 """ |
30 """ |
31 super(ErrorLogDialog, self).__init__(parent) |
31 super().__init__(parent) |
32 self.setupUi(self) |
32 self.setupUi(self) |
33 self.setWindowFlags(Qt.WindowType.Window) |
33 self.setWindowFlags(Qt.WindowType.Window) |
34 |
34 |
35 pixmap = ( |
35 pixmap = ( |
36 self.style().standardIcon( |
36 self.style().standardIcon( |