diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-11-25 14:56:51 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-11-25 15:45:58 +0000 |
commit | c5bfac3f26dab2308b5a9797876927d410ac7876 (patch) | |
tree | 98bcabb784c118d53291e4ab5363368e436f07c9 | |
parent | 43e2b417970cb7968430a1e9ef2a5fb54af8434c (diff) |
coverity#1340226 Missing break in switch
Change-Id: Ibd1c15ce65501d4dc6d0cea8c8e5f4e683d1b7a4
-rw-r--r-- | sd/source/ui/view/ViewShellBase.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sd/source/ui/view/ViewShellBase.cxx b/sd/source/ui/view/ViewShellBase.cxx index a66ad735f306..35f0773d0f9b 100644 --- a/sd/source/ui/view/ViewShellBase.cxx +++ b/sd/source/ui/view/ViewShellBase.cxx @@ -1254,6 +1254,7 @@ void ViewShellBase::Implementation::GetSlotState (SfxItemSet& rSet) pFrameView = mrBase.GetMainViewShell()->GetFrameView(); bState = pFrameView->GetViewShEditMode() == EM_MASTERPAGE && pFrameView->GetPageKind() == PK_STANDARD; + break; case SID_SLIDE_SORTER_MULTI_PANE_GUI: case SID_SLIDE_SORTER_MODE: |