diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-05 10:23:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-05 13:35:53 +0100 |
commit | a2d2c6d6bdc328683d959573404e6d0d405c75f0 (patch) | |
tree | b98e00f27f1b4d5a0e6e64c67104354e2d816916 /svtools/source/svhtml | |
parent | 2484cda486334841fdfe92c82a8a7bf026e28768 (diff) |
coverity#1103688 Missing break in switch, assuming its intentional
Change-Id: I9b619e4896d811c2fbb20e229f65bfa01bd05731
Diffstat (limited to 'svtools/source/svhtml')
-rw-r--r-- | svtools/source/svhtml/parhtml.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx index c9d70c9d9c62..7b04001cec6c 100644 --- a/svtools/source/svhtml/parhtml.cxx +++ b/svtools/source/svhtml/parhtml.cxx @@ -1599,6 +1599,7 @@ int HTMLParser::FilterPRE( int nToken ) // in Netscape they only have impact in not empty paragraphs case HTML_PARABREAK_ON: nToken = HTML_LINEBREAK; + //fall-through case HTML_LINEBREAK: case HTML_NEWPARA: nPre_LinePos = 0; |