diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-11-11 17:27:45 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-11-11 17:27:45 +0000 |
commit | 2dbe457fbcd99ea09e5a97b39e216e575c260cbe (patch) | |
tree | 111ee8b2ea2cc08e6fe44bf330476697cfd19a5c | |
parent | a201f0cc675ea5b5b1ef71d6cef7ea7ef4e74923 (diff) |
coverity#1338594 Missing break in switch
Change-Id: I32364aff6d99bd67691a27eef439318c21b36695
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index 2924c1ac5037..257de7ca769f 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -548,6 +548,7 @@ void PowerPointExport::WriteTransition( FSHelperPtr pFS ) pThruBlk = "true"; bOOXmlSpecificTransition = true; } + break; } case animations::TransitionType::MISCSHAPEWIPE: { @@ -588,8 +589,8 @@ void PowerPointExport::WriteTransition( FSHelperPtr pFS ) bOOXmlSpecificTransition = true; break; } + break; } - break; } } |