diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-02-18 07:16:52 -0600 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-02-18 13:43:10 +0000 |
commit | 753d92968a9d4dc1d3498464d6a88aee0d654ba5 (patch) | |
tree | 93911e2a49d35988cc81fc8811728b9d50cadf37 /xmloff | |
parent | 2d3e06c0603649f577439a32917934c5c499a106 (diff) |
coverity#705351 Missing break in switch
Change-Id: Id6d35b951ff78f21e3ea5a9beed22081f8c466fa
Reviewed-on: https://gerrit.libreoffice.org/2237
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/transform/OOo2Oasis.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmloff/source/transform/OOo2Oasis.cxx b/xmloff/source/transform/OOo2Oasis.cxx index 1a6a7bbf4e67..22be397163d2 100644 --- a/xmloff/source/transform/OOo2Oasis.cxx +++ b/xmloff/source/transform/OOo2Oasis.cxx @@ -1768,6 +1768,7 @@ XMLTransformerActions *OOo2OasisTransformer::GetUserDefinedActions( case OOO_SOURCE_SERVICE_ACTIONS: m_aActions[OOO_SOURCE_SERVICE_ACTIONS] = new XMLTransformerActions( aSourceServiceActionTable ); + break; case OOO_DRAW_AREA_POLYGON_ACTIONS: m_aActions[OOO_DRAW_AREA_POLYGON_ACTIONS] = new XMLTransformerActions( aShapeActionTable ); |