Cleanup: add missing break statements

The current code of course works just fine. But there's a risk someone might
add something to one of these cases and not realize that there is an implicit
fall through going on. This is cleaner.

Found by Coverity. Fixes CID 350079

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2019-10-27 07:26:50 -04:00
parent 80f76773c1
commit 08fcda60ac

View file

@ -63,12 +63,15 @@ QVariant WeightModel::data(const QModelIndex &index, int role) const
case Qt::DecorationRole:
if (index.column() == REMOVE)
return trashIcon();
break;
case Qt::SizeHintRole:
if (index.column() == REMOVE)
return trashIcon().size();
break;
case Qt::ToolTipRole:
if (index.column() == REMOVE)
return tr("Clicking here will remove this weight system.");
break;
}
return QVariant();
}