From dc385a8b97cfc0fcb1d7119655ea23688a567944 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Wed, 1 Mar 2017 16:41:37 +0100 Subject: [PATCH] Fix coverity false positive The fall through was intended at db889bc6. --- src/insets/InsetCitation.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/insets/InsetCitation.cpp b/src/insets/InsetCitation.cpp index b16077ffd9..12044f50c1 100644 --- a/src/insets/InsetCitation.cpp +++ b/src/insets/InsetCitation.cpp @@ -149,6 +149,7 @@ void InsetCitation::doDispatch(Cursor & cur, FuncRequest & cmd) cmd = FuncRequest(LFUN_INSET_MODIFY, "changetype " + newcmdname); } } + // fall through default: InsetCommand::doDispatch(cur, cmd); } -- 2.39.5