diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-11 15:34:51 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-12 08:59:08 +0200 |
commit | a9cb2af8c29accba8dc1573859965ccca3e2edd7 (patch) | |
tree | d186bb9768952624028491ae25fb00e420f13627 | |
parent | 746028f5c56eb80ad6b9474e5927a62b0c4855a6 (diff) |
cid#705344 missing break in switch
Change-Id: I734d4ed0dbb7b1cdf7640b76d88ea1ff2d19da4c
-rw-r--r-- | xmloff/source/style/cdouthdl.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmloff/source/style/cdouthdl.cxx b/xmloff/source/style/cdouthdl.cxx index d559eb866fcd..9b4dd7dbdec2 100644 --- a/xmloff/source/style/cdouthdl.cxx +++ b/xmloff/source/style/cdouthdl.cxx @@ -230,6 +230,7 @@ bool XMLCrossedOutWidthPropHdl::importXML( const OUString& rStrImpValue, uno::An eNewStrikeout = eStrikeout; break; } + break; default: OSL_ENSURE( bRet, "unexpected line type value" ); break; |