From 706893eb2d737e1475945f4204f95b7382992240 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 21 Mar 2014 13:26:16 +0000 Subject: coverity#736078 Missing break in switch Change-Id: I9b47828d3aea4d84788958f56056c1b62a806b36 --- vcl/source/window/layout.cxx | 1 + 1 file changed, 1 insertion(+) 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()) -- cgit