diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-05 17:14:45 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-05 20:42:02 +0100 |
commit | bf01bb6e80a999bf13f45cf22421b54ab6779bcc (patch) | |
tree | ac21e23a352f6268031876f0eef8d83e25e9c67c | |
parent | dce5aea971d322f20e1e84254ccb4106bebce699 (diff) |
coverity#736056 Missing break in switch, assuming intentional
Change-Id: I4f729d26bae2f2e371e0f2c7aabd5cabd7bf5a62
-rw-r--r-- | sw/source/core/doc/docruby.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/docruby.cxx b/sw/source/core/doc/docruby.cxx index 1a4994c7896b..1f7126910847 100644 --- a/sw/source/core/doc/docruby.cxx +++ b/sw/source/core/doc/docruby.cxx @@ -282,7 +282,7 @@ bool SwDoc::_SelectNextRubyChars( SwPaM& rPam, SwRubyListEntry& rEntry, sal_uInt case UnicodeType::OTHER_LETTER: bChkNxtWrd = true; - + //fall-through default: bIsAlphaNum = false; break; |