summaryrefslogtreecommitdiffstats
path: root/forms
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-05-10 14:49:37 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-05-10 14:57:26 +0200
commit0f3ac23d732239b50207cfbb8cf810ef41fa9835 (patch)
treea338a71c043dfa71e9de3c6cdc5b239b5f4b04a3 /forms
parentUpdated core (diff)
downloadcore-0f3ac23d732239b50207cfbb8cf810ef41fa9835.tar.gz
core-0f3ac23d732239b50207cfbb8cf810ef41fa9835.zip
Insert explicit "break" when falling through to empty next case
...which itself only contains a "break" (or nothing at all at the end of the "switch"), as otherwise Clang -Wimplicit-fallthrough would warn about these. Change-Id: I25c1cf2ca74dfeba7ca0385ca8f1c1bf30bbf91b
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/ListBox.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index 3275718d48b2..6b3f1b4c4635 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -1316,6 +1316,7 @@ namespace frm
default:
break;
}
+ break;
}
default:
break;