17 class HelpDocsInstaller(QThread): |
17 class HelpDocsInstaller(QThread): |
18 """ |
18 """ |
19 Class implementing the worker thread populating and updating the QtHelp |
19 Class implementing the worker thread populating and updating the QtHelp |
20 documentation database. |
20 documentation database. |
21 |
21 |
22 @signal errorMessage(const QString&) emitted, if an error occurred during |
22 @signal errorMessage(str) emitted, if an error occurred during |
23 the installation of the documentation |
23 the installation of the documentation |
24 @signal docsInstalled(bool) emitted after the installation has finished |
24 @signal docsInstalled(bool) emitted after the installation has finished |
25 """ |
25 """ |
26 errorMessage = pyqtSignal(str) |
26 errorMessage = pyqtSignal(str) |
27 docsInstalled = pyqtSignal(bool) |
27 docsInstalled = pyqtSignal(bool) |