diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 10:03:16 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 12:11:42 +0000 |
commit | 14744ab70865561b8f46acf4a3c2a7f775535904 (patch) | |
tree | d2632b10c881be85beabb7fcd851e39dec071a3e | |
parent | 4ba25fbab6d4ee0990d71a0d91c843b04670837d (diff) |
coverity#705161 Missing break in switch
Change-Id: If936313919b41183d3fe657f5e21f885a89838b6
-rw-r--r-- | filter/source/graphicfilter/idxf/dxfentrd.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/filter/source/graphicfilter/idxf/dxfentrd.cxx b/filter/source/graphicfilter/idxf/dxfentrd.cxx index 910ba3d6bb4f..c5c130627462 100644 --- a/filter/source/graphicfilter/idxf/dxfentrd.cxx +++ b/filter/source/graphicfilter/idxf/dxfentrd.cxx @@ -697,8 +697,9 @@ void DXFHatchEntity::EvaluateGroup( DXFGroupReader & rDGR ) case 47 : fPixelSize = rDGR.GetF(); break; case 98 : nNumberOfSeedPoints = rDGR.GetI(); break; - //!! passthrough !! - case 92 : nCurrentBoundaryPathIndex++; + case 92: + nCurrentBoundaryPathIndex++; + //fallthrough default: { sal_Bool bExecutingGroupCode = sal_False; |