diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-02 10:24:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-02 10:46:47 +0100 |
commit | 63bfc8ab1038477bce0059e6b75982635527fcab (patch) | |
tree | 682c9b81efa730a1de2fb8d45f307e92c4126a05 /xmloff | |
parent | fa0421c763a92dbfead1d0144b434a3b6ab9dccb (diff) |
coverity#705353 Missing break in switch, probably intentional
Change-Id: I17d22443f24de5b4bf5c259e38912abc2c14ab94
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/transform/StyleOASISTContext.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmloff/source/transform/StyleOASISTContext.cxx b/xmloff/source/transform/StyleOASISTContext.cxx index 0e78db043d9e..4807b1d5ebb8 100644 --- a/xmloff/source/transform/StyleOASISTContext.cxx +++ b/xmloff/source/transform/StyleOASISTContext.cxx @@ -864,6 +864,7 @@ void XMLStyleOASISTContext::StartElement( break; case XML_ATACTION_DECODE_STYLE_NAME: m_bControlStyle = rAttrValue.startsWith( "ctrl" ); + // fall-through case XML_ATACTION_DECODE_STYLE_NAME_REF: { OUString aAttrValue( rAttrValue ); |