Don't crash when removing the plugin of the first tab.

--HG--
branch : gsoc2014-dfighter
This commit is contained in:
dfighter1985 2014-06-08 21:56:31 +02:00
parent 0096ad1204
commit c45b6a17f4

View file

@ -135,8 +135,8 @@ void ContextManager::removeContextObject(IContext *context)
const int index = indexOf(context->id()); const int index = indexOf(context->id());
QWidget *widget = d->m_tabWidget->widget(index); QWidget *widget = d->m_tabWidget->widget(index);
d->m_tabWidget->removeTab(index);
d->m_contexts.remove(index); d->m_contexts.remove(index);
d->m_tabWidget->removeTab(index);
delete widget; delete widget;
} }