Replace QTC_ASSERT with normal check

Optionspages are called even if they weren't shown.
This commit is contained in:
dt
2011-02-23 16:02:14 +01:00
parent f33fc2112c
commit 63fb8ffc9a

View File

@@ -532,8 +532,8 @@ QWidget *ToolChainOptionsPage::createPage(QWidget *parent)
void ToolChainOptionsPage::apply()
{
QTC_ASSERT(m_model, return; )
m_model->apply();
if (m_model)
m_model->apply();
}
void ToolChainOptionsPage::finish()