--- a/WebBrowser/QtHelp/HelpIndexWidget.py Sat Mar 11 18:08:42 2017 +0100 +++ b/WebBrowser/QtHelp/HelpIndexWidget.py Sat Mar 11 19:17:59 2017 +0100 @@ -130,16 +130,16 @@ link = dlg.link() return link - def __filterIndices(self, filter): + def __filterIndices(self, indexFilter): """ - Private slot to filter the indices according to the given filter. + Private slot to filter the indexes according to the given filter. - @param filter filter to be used (string) + @param indexFilter filter to be used (string) """ - if '*' in filter: - self.__index.filterIndices(filter, filter) + if '*' in indexFilter: + self.__index.filterIndices(indexFilter, indexFilter) else: - self.__index.filterIndices(filter) + self.__index.filterIndices(indexFilter) def __enableSearchEdit(self): """