diff -r e9e7eca7efee -r bf71ee032bb4 src/eric7/EricWidgets/EricSimpleHelpDialog.py --- a/src/eric7/EricWidgets/EricSimpleHelpDialog.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/EricWidgets/EricSimpleHelpDialog.py Wed Jul 13 14:55:47 2022 +0200 @@ -17,10 +17,11 @@ """ Class implementing a dialog to show some help text. """ + def __init__(self, title="", label="", helpStr="", parent=None): """ Constructor - + @param title title of the window @type str @param label label for the help @@ -33,7 +34,7 @@ super().__init__(parent) self.setupUi(self) self.setWindowFlags(Qt.WindowType.Window) - + self.setWindowTitle(title) if label: self.helpLabel.setText(label)