730 @type str |
730 @type str |
731 """ |
731 """ |
732 EricMessageBox.warning(self, self.tr("eric Help Viewer"), message) |
732 EricMessageBox.warning(self, self.tr("eric Help Viewer"), message) |
733 |
733 |
734 @pyqtSlot(bool) |
734 @pyqtSlot(bool) |
735 def __docsInstalled(self, installed): |
735 def __docsInstalled(self, _installed): |
736 """ |
736 """ |
737 Private slot handling the end of documentation installation. |
737 Private slot handling the end of documentation installation. |
738 |
738 |
739 @param installed flag indicating that documents were installed |
739 @param _installed flag indicating that documents were installed (unused) |
740 @type bool |
740 @type bool |
741 """ |
741 """ |
742 self.__ui.statusBar().clearMessage() |
742 self.__ui.statusBar().clearMessage() |
743 self.__helpEngine.setupData() |
743 self.__helpEngine.setupData() |
744 |
744 |