diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-28 16:19:36 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-28 16:23:41 +0100 |
commit | 4e3e1420af51f7776dceb6b2800b761e57ddfe63 (patch) | |
tree | 8cec24c90b0a71f26bac399a9a7671b83b55c9e4 /sc | |
parent | 1af37550cf48e270a6039eafc752d11da46415fc (diff) |
coverity#1078626 Missing break in switch
Change-Id: I4b9b846049d9802a319b403e1f45734b7bd604f2
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/dpgroup.cxx | 2 |
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 || |