From ba29f527fa5a929d0c384c1c10af03a13a325cde Mon Sep 17 00:00:00 2001 From: Philippe Renon Date: Fri, 14 Jul 2017 18:41:08 +0200 Subject: [PATCH] LP-109 pluginerrorview: add missing breaks --- ground/gcs/src/libs/extensionsystem/pluginerrorview.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ground/gcs/src/libs/extensionsystem/pluginerrorview.cpp b/ground/gcs/src/libs/extensionsystem/pluginerrorview.cpp index df177d361..d23711a9d 100644 --- a/ground/gcs/src/libs/extensionsystem/pluginerrorview.cpp +++ b/ground/gcs/src/libs/extensionsystem/pluginerrorview.cpp @@ -102,9 +102,11 @@ 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);