683 @return path of the QtHelp collection file |
683 @return path of the QtHelp collection file |
684 @rtype str |
684 @rtype str |
685 """ |
685 """ |
686 qthelpDir = os.path.join(Globals.getConfigDir(), "qthelp") |
686 qthelpDir = os.path.join(Globals.getConfigDir(), "qthelp") |
687 if not os.path.exists(qthelpDir): |
687 if not os.path.exists(qthelpDir): |
688 os.makedirs(qthelpDir) |
688 os.makedirs(qthelpDir, exist_ok=True) |
689 return os.path.join(qthelpDir, "eric7help.qhc") |
689 return os.path.join(qthelpDir, "eric7help.qhc") |
690 |
690 |
691 @pyqtSlot(str) |
691 @pyqtSlot(str) |
692 def __warning(self, msg): |
692 def __warning(self, msg): |
693 """ |
693 """ |