aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Schulz <[email protected]>2018-02-27 13:34:03 +0100
committerDavid Schulz <[email protected]>2018-02-28 13:43:27 +0000
commit4c629ed3562d1e1b0af251cae94f3de68a11727e (patch)
treeb51b3f91808070f9df1e04f46ea9dbc52f03a22b /src
parent73c72fa6a765bcf24c7e44d2d3d45c02609ac21c (diff)
Core: initialize helpengine in async register thread
Task-number: QTCREATORBUG-19933 Change-Id: I97e7391e1c1ab7b58caa4796d557c9cc7f484005 Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/coreplugin/helpmanager.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/coreplugin/helpmanager.cpp b/src/plugins/coreplugin/helpmanager.cpp
index f7dd9818e9f..7a36f0779cf 100644
--- a/src/plugins/coreplugin/helpmanager.cpp
+++ b/src/plugins/coreplugin/helpmanager.cpp
@@ -156,6 +156,7 @@ void HelpManager::registerDocumentationNow(QFutureInterface<bool> &futureInterfa
futureInterface.setProgressValue(0);
QHelpEngineCore helpEngine(collectionFilePath());
+ helpEngine.setupData();
bool docsChanged = false;
QStringList nameSpaces = d->m_helpEngine->registeredDocumentations();
for (const QString &file : files) {