--- a/eric7/WebBrowser/QtHelp/HelpTopicDialog.py Tue Aug 31 19:56:40 2021 +0200 +++ b/eric7/WebBrowser/QtHelp/HelpTopicDialog.py Wed Sep 01 18:11:31 2021 +0200 @@ -18,13 +18,13 @@ """ Class implementing a dialog to select a help topic to display. """ - def __init__(self, parent, keyword, documents): + def __init__(self, parent, helpKeyword, documents): """ Constructor @param parent reference to the parent widget @type QWidget - @param keyword keyword for the link set + @param helpKeyword keyword for the link set @type str @param documents list of help document link data structures @type list of QHelpLink @@ -33,7 +33,7 @@ self.setupUi(self) self.label.setText(self.tr("Choose a &topic for <b>{0}</b>:") - .format(keyword)) + .format(helpKeyword)) for document in documents: itm = self.topicsList.addItem(document.title)