summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-26 09:31:52 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-26 10:18:24 +0100
commit51d6b42e4c16e9bb54cc191e5e8a5862f7869b12 (patch)
tree4c941729d9558c1a8d1e2e28c4b122bd741732eb /sd
parent15befeb90cbbae3c644eda7640d2b97b1346269f (diff)
coverity#705221 Missing break in switch
Change-Id: Ib798371f42dff6fcc67ea16c3f0ddf579160a87e
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/eppt/pptexanimations.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/pptexanimations.cxx b/sd/source/filter/eppt/pptexanimations.cxx
index 777472f00c6e..40e1caa61648 100644
--- a/sd/source/filter/eppt/pptexanimations.cxx
+++ b/sd/source/filter/eppt/pptexanimations.cxx
@@ -835,8 +835,9 @@ void AnimationExporter::exportAnimNode( SvStream& rStrm, const Reference< XAnima
aAnim.mnGroupType = mso_Anim_GroupType_SEQ;
switch( xNode->getType() )
{
- case AnimationNodeType::PAR : // PASSTROUGH!!! (as it was intended)
+ case AnimationNodeType::PAR :
aAnim.mnGroupType = mso_Anim_GroupType_PAR;
+ // PASSTROUGH!!! (as it was intended)
case AnimationNodeType::SEQ :
{
sal_Int16 nType = 0;