qmake: Fix WS

Change-Id: Ib87bdf6c686e3bb37bdd55955d5e18de79d2729a
Reviewed-by: André Hartmann <aha_1980@gmx.de>
This commit is contained in:
Tobias Hunger
2017-07-13 16:29:15 +02:00
parent 93bc0a9ada
commit 98764a44a7
2 changed files with 4 additions and 4 deletions

View File

@@ -1184,9 +1184,9 @@ void QmakeProFile::asyncUpdate()
m_parseFutureWatcher.waitForFinished();
QmakeEvalInput input = evalInput();
QFuture<QmakeEvalResult *> future = Utils::runAsync(ProjectExplorerPlugin::sharedThreadPool(),
QThread::LowestPriority,
&QmakeProFile::asyncEvaluate,
this, input);
QThread::LowestPriority,
&QmakeProFile::asyncEvaluate,
this, input);
m_parseFutureWatcher.setFuture(future);
}