src/eric7/UI/ErrorLogDialog.py

branch
eric7
changeset 10433
328f3ec4b77a
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
equal deleted inserted replaced
10432:2fe91fe443dd 10433:328f3ec4b77a
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

eric ide

mercurial