aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Quantin <pascal@wireshark.org>2019-07-18 09:41:25 +0200
committerRoland Knall <rknall@gmail.com>2019-07-18 08:44:03 +0000
commit54bbf3cf9e120ecc14d21ab0c9a13e669d2d4151 (patch)
tree64fb99fa7f11a616fe5b72ea6155be7891ba58d3
parent8499ad93c5d43d1d4405857093c3ae5140d40152 (diff)
profile_model.cpp: add a missing break
Change-Id: I08f6f0f02a637a1b6c532b5e41396f5ebcd1ed99 Reviewed-on: https://code.wireshark.org/review/34003 Petri-Dish: Pascal Quantin <pascal@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
-rw-r--r--ui/qt/models/profile_model.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/qt/models/profile_model.cpp b/ui/qt/models/profile_model.cpp
index 692328b20c..95f0ebc63a 100644
--- a/ui/qt/models/profile_model.cpp
+++ b/ui/qt/models/profile_model.cpp
@@ -227,6 +227,7 @@ QVariant ProfileModel::data(const QModelIndex &index, int role) const
case PROF_STAT_CHANGED:
if (prof->reference)
return QString("%1 %2").arg(tr("Renamed from: ")).arg(prof->reference);
+ break;
case PROF_STAT_COPY:
if (prof->reference)
return QString("%1 %2").arg(tr("Copied from: ")).arg(prof->reference);