ToolChains: Trigger ToolChainManager::toolChainChanged signal

Trigger ToolChainManager::toolChainChanged signal when something
changes. This was apparently missing in quite a few places of
some of the tool chains.

Change-Id: Ic94c6559e6267f4ff22dc74cc5b0865fb7aeac63
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Tobias Hunger
2016-07-06 14:13:25 +02:00
parent 3576b7e128
commit 4ac80fe3a0
4 changed files with 38 additions and 3 deletions

View File

@@ -231,7 +231,10 @@ bool AndroidToolChain::isSecondaryToolChain() const
void AndroidToolChain::setSecondaryToolChain(bool b)
{
if (m_secondaryToolChain == b)
return;
m_secondaryToolChain = b;
toolChainUpdated();
}
GccToolChain::DetectedAbisResult AndroidToolChain::detectSupportedAbis() const