forked from qt-creator/qt-creator
Fix missing breaks which lead to invalid fallthroughs.
This commit is contained in:
@@ -102,10 +102,13 @@ void PluginErrorView::update(PluginSpec *spec)
|
||||
case PluginSpec::Stopped:
|
||||
text = tr("Stopped");
|
||||
tooltip = tr("Plugin was shut down");
|
||||
break;
|
||||
case PluginSpec::Deleted:
|
||||
text = tr("Deleted");
|
||||
tooltip = tr("Plugin ended its life cycle and was deleted");
|
||||
break;
|
||||
}
|
||||
|
||||
m_ui->state->setText(text);
|
||||
m_ui->state->setToolTip(tooltip);
|
||||
m_ui->errorString->setText(spec->errorString());
|
||||
|
||||
Reference in New Issue
Block a user