diff -r 7c7c5f9e4fad -r 6a1b25cff5fb E5Gui/E5SimpleHelpDialog.py --- a/E5Gui/E5SimpleHelpDialog.py Wed Jul 05 19:38:06 2017 +0200 +++ b/E5Gui/E5SimpleHelpDialog.py Wed Jul 05 19:40:18 2017 +0200 @@ -19,7 +19,7 @@ """ Class implementing a dialog to show some help text. """ - def __init__(self, title="", label="", help="", parent=None): + def __init__(self, title="", label="", helpStr="", parent=None): """ Constructor @@ -27,7 +27,7 @@ @type str @param label label for the help @type str - @param help HTML help text + @param helpStr HTML help text @type str @param parent reference to the parent widget @type QWidget @@ -41,4 +41,4 @@ self.helpLabel.setText(label) else: self.helpLabel.hide() - self.helpEdit.setHtml(help) + self.helpEdit.setHtml(helpStr)