diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-21 13:26:16 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-21 14:38:41 +0000 |
commit | 706893eb2d737e1475945f4204f95b7382992240 (patch) | |
tree | 5f359835de8239c0a31fdd28c13c1ae340632993 | |
parent | adcb33d71d2c2732fb5af7d19a4cd58adb009993 (diff) |
coverity#736078 Missing break in switch
Change-Id: I9b47828d3aea4d84788958f56056c1b62a806b36
-rw-r--r-- | vcl/source/window/layout.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx index 4da3a8f3d8b3..4c8a77694635 100644 --- a/vcl/source/window/layout.cxx +++ b/vcl/source/window/layout.cxx @@ -602,6 +602,7 @@ void VclButtonBox::setAllocation(const Size &rAllocation) break; default: SAL_WARN("vcl.layout", "todo unimplemented layout style"); + //fall-through case VCL_BUTTONBOX_DEFAULT_STYLE: case VCL_BUTTONBOX_END: if (!aReq.m_aMainGroupDimensions.empty()) |