summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-05 17:14:45 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-05 20:42:02 +0100
commitbf01bb6e80a999bf13f45cf22421b54ab6779bcc (patch)
treeac21e23a352f6268031876f0eef8d83e25e9c67c
parentdce5aea971d322f20e1e84254ccb4106bebce699 (diff)
coverity#736056 Missing break in switch, assuming intentional
Change-Id: I4f729d26bae2f2e371e0f2c7aabd5cabd7bf5a62
-rw-r--r--sw/source/core/doc/docruby.cxx2
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;