forked from qt-creator/qt-creator
qbs updates.
- Make project files buildable with current qbs. - Update qbs submodule to enable Qt Creator to open these project files. - Fix an invalid access that caused a soft assert. Change-Id: I976d19240112d1ff048e51036e6702383735352b Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com> Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
committed by
Tobias Hunger
parent
bcb74fa9a4
commit
5728f7e673
@@ -489,7 +489,7 @@ void QbsProductNode::setQbsProductData(const qbs::ProductData prd)
|
||||
if (m_qbsProductData == prd)
|
||||
return;
|
||||
|
||||
bool productWasEnabled = m_qbsProductData.isEnabled();
|
||||
bool productWasEnabled = m_qbsProductData.isValid() && m_qbsProductData.isEnabled();
|
||||
bool productIsEnabled = prd.isEnabled();
|
||||
bool updateExisting = productWasEnabled != productIsEnabled;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user