Fix issues with showing correct status of debug helpers

Reviewed-by: Thomas Hartmann
This commit is contained in:
Lasse Holmstedt
2010-09-30 09:37:28 +02:00
parent 129b53f616
commit 2129b0bcd0

View File

@@ -1794,9 +1794,14 @@ QString QtVersion::buildDebuggingHelperLibrary(QFutureInterface<void> &future)
} }
future.setProgressValue(4); future.setProgressValue(4);
// invalidate version before updating version info
m_versionInfoUpToDate = false;
updateVersionInfo();
m_hasDebuggingHelper = !debuggingHelperLibrary().isEmpty(); m_hasDebuggingHelper = !debuggingHelperLibrary().isEmpty();
m_hasQmlDump = !qmlDumpTool().isEmpty(); m_hasQmlDump = !qmlDumpTool().isEmpty();
m_hasQmlObserver = !qmlObserverTool().isEmpty(); m_hasQmlObserver = !qmlObserverTool().isEmpty();
return output; return output;
} }