src/eric7/WebBrowser/WebBrowserWindow.py

branch
eric7
changeset 10331
c1a2ff7e3575
parent 10247
81f8846b62ad
child 10373
093dcebe5ecb
equal deleted inserted replaced
10330:5ea038882dd6 10331:c1a2ff7e3575
3962 def __manageQtHelpDocumentation(self): 3962 def __manageQtHelpDocumentation(self):
3963 """ 3963 """
3964 Private slot to manage the QtHelp documentation database. 3964 Private slot to manage the QtHelp documentation database.
3965 """ 3965 """
3966 if WebBrowserWindow._useQtHelp: 3966 if WebBrowserWindow._useQtHelp:
3967 from eric7.QtHelpInterface.QtHelpDocumentationConfigurationDialog import ( # __IGNORE_WARNING__ 3967 from eric7.QtHelpInterface.QtHelpDocumentationConfigurationDialog import ( # noqa: I101
3968 QtHelpDocumentationConfigurationDialog, 3968 QtHelpDocumentationConfigurationDialog,
3969 ) 3969 )
3970 3970
3971 dlg = QtHelpDocumentationConfigurationDialog(self.__helpEngine, self) 3971 dlg = QtHelpDocumentationConfigurationDialog(self.__helpEngine, self)
3972 dlg.exec() 3972 dlg.exec()
4060 """ 4060 """
4061 Private slot to look for new documentation to be loaded into the 4061 Private slot to look for new documentation to be loaded into the
4062 help database. 4062 help database.
4063 """ 4063 """
4064 if WebBrowserWindow._useQtHelp: 4064 if WebBrowserWindow._useQtHelp:
4065 from eric7.QtHelpInterface.HelpDocsInstaller import ( # __IGNORE_WARNING__ 4065 from eric7.QtHelpInterface.HelpDocsInstaller import ( # noqa: I101
4066 HelpDocsInstaller, 4066 HelpDocsInstaller,
4067 ) 4067 )
4068 4068
4069 self.__helpInstaller = HelpDocsInstaller(self.__helpEngine.collectionFile()) 4069 self.__helpInstaller = HelpDocsInstaller(self.__helpEngine.collectionFile())
4070 self.__helpInstaller.errorMessage.connect(self.__showInstallationError) 4070 self.__helpInstaller.errorMessage.connect(self.__showInstallationError)

eric ide

mercurial