diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-11 15:40:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-12 08:59:09 +0200 |
commit | 69b31ea3d88f831fb771f4f160a7e227dd373478 (patch) | |
tree | fc6a68c2ff16c6c200a871b57c584ee1ff31cb48 | |
parent | a9cb2af8c29accba8dc1573859965ccca3e2edd7 (diff) |
cid#705349 missing break in switch
Change-Id: I1e76cb8878968adffb1c8bebfc90786025a2b7c3
-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 e956b4d93212..1b2661e9af01 100644 --- a/xmloff/source/transform/OOo2Oasis.cxx +++ b/xmloff/source/transform/OOo2Oasis.cxx @@ -1745,6 +1745,7 @@ XMLTransformerActions *OOo2OasisTransformer::GetUserDefinedActions( case OOO_DATAPILOT_MEMBER_ACTIONS: m_aActions[OOO_DATAPILOT_MEMBER_ACTIONS] = new XMLTransformerActions( aDataPilotMemberActionTable ); + break; case OOO_DATAPILOT_LEVEL_ACTIONS: m_aActions[OOO_DATAPILOT_LEVEL_ACTIONS] = new XMLTransformerActions( aDataPilotLevelActionTable ); |