diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-07 16:41:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-07 16:43:11 +0100 |
commit | dd10103f8c66713fc0ed7f9647625a6f8b2d96b4 (patch) | |
tree | 08f3f04af69f3926ba83345233e3f5ba28764a18 | |
parent | e52f1bd7b34fc73f52aadf1d33efa6685a0b22e8 (diff) |
CID#708773 missing break
its the same result either way, but seeing as the assignment
is duplicated might as well tidy it up
Change-Id: Id64547c6a5d2ce58b1ee79ba64cb761575b2d1dd
-rw-r--r-- | writerfilter/source/dmapper/DomainMapper.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx b/writerfilter/source/dmapper/DomainMapper.cxx index b65c7a7f1da8..935f81f299c2 100644 --- a/writerfilter/source/dmapper/DomainMapper.cxx +++ b/writerfilter/source/dmapper/DomainMapper.cxx @@ -1293,8 +1293,11 @@ void DomainMapper::lcl_attribute(Id nName, Value & val) pParaContext->SetFrameMode(false); } nIntValue = text::VertOrientation::NONE; + break; } - default:nIntValue = text::VertOrientation::NONE; + default: + nIntValue = text::VertOrientation::NONE; + break; } pParaProperties->SetyAlign( nIntValue ); break; |