From 4e3e1420af51f7776dceb6b2800b761e57ddfe63 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 28 May 2014 16:19:36 +0100 Subject: coverity#1078626 Missing break in switch Change-Id: I4b9b846049d9802a319b403e1f45734b7bd604f2 --- sc/source/core/data/dpgroup.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc') diff --git a/sc/source/core/data/dpgroup.cxx b/sc/source/core/data/dpgroup.cxx index 6459b72a4559..f2a68f56af83 100644 --- a/sc/source/core/data/dpgroup.cxx +++ b/sc/source/core/data/dpgroup.cxx @@ -283,7 +283,7 @@ bool isDateInGroup(const ScDPItemData& rGroupItem, const ScDPItemData& rChildIte if (nGroupPart == com::sun::star::sheet::DataPilotFieldGroupBy::QUARTERS) // months and quarters are both 1-based return (nGroupValue - 1 == (nChildValue - 1) / 3); - + break; case com::sun::star::sheet::DataPilotFieldGroupBy::DAYS: // a day is only contained in its quarter or month if (nGroupPart == com::sun::star::sheet::DataPilotFieldGroupBy::MONTHS || -- cgit