Tue, 13 Feb 2018 19:50:09 +0100
WebBrowser, QtHelp: Removed calls to emgine.setupData(). This is done internally where needed.
WebBrowser/QtHelp/HelpDocsInstaller.py | file | annotate | diff | comparison | revisions | |
WebBrowser/QtHelp/QtHelpFiltersDialog.py | file | annotate | diff | comparison | revisions |
--- a/WebBrowser/QtHelp/HelpDocsInstaller.py Mon Feb 12 19:50:24 2018 +0100 +++ b/WebBrowser/QtHelp/HelpDocsInstaller.py Tue Feb 13 19:50:09 2018 +0100 @@ -68,7 +68,6 @@ Public method executed by the thread. """ engine = QHelpEngineCore(self.__collection) - engine.setupData() changes = False qt4Docs = ["designer", "linguist", "qt"]
--- a/WebBrowser/QtHelp/QtHelpFiltersDialog.py Mon Feb 12 19:50:24 2018 +0100 +++ b/WebBrowser/QtHelp/QtHelpFiltersDialog.py Tue Feb 13 19:50:09 2018 +0100 @@ -44,7 +44,6 @@ self.attributesList.clear() helpEngineCore = QHelpEngineCore(self.__engine.collectionFile()) - helpEngineCore.setupData() self.__removedFilters = [] self.__filterMap = {} @@ -269,7 +268,4 @@ if self.__removedAttributes: self.__removeAttributes() - if filtersChanged or self.__removedAttributes: - self.__engine.setupData() - self.accept()