summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-28 16:19:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-28 16:23:41 +0100
commit4e3e1420af51f7776dceb6b2800b761e57ddfe63 (patch)
tree8cec24c90b0a71f26bac399a9a7671b83b55c9e4
parent1af37550cf48e270a6039eafc752d11da46415fc (diff)
coverity#1078626 Missing break in switch
Change-Id: I4b9b846049d9802a319b403e1f45734b7bd604f2
-rw-r--r--sc/source/core/data/dpgroup.cxx2
1 files changed, 1 insertions, 1 deletions
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 ||