--- a/Helpviewer/HelpIndexWidget.py Tue Mar 07 18:46:09 2017 +0100 +++ b/Helpviewer/HelpIndexWidget.py Tue Mar 07 18:53:18 2017 +0100 @@ -122,16 +122,16 @@ link = dlg.link() return link - def __filterIndices(self, filter): + def __filterIndices(self, filterStr): """ Private slot to filter the indices according to the given filter. - @param filter filter to be used (string) + @param filterStr filter to be used (string) """ - if '*' in filter: - self.__index.filterIndices(filter, filter) + if '*' in filterStr: + self.__index.filterIndices(filterStr, filterStr) else: - self.__index.filterIndices(filter) + self.__index.filterIndices(filterStr) def __enableSearchEdit(self): """