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-26 12:22:37 +0000 |
commit | d8e6bc709ad77047320491148acf7076186a51d2 (patch) | |
tree | c19081a919425c911e3b304208c4344527bfb3c9 /sd | |
parent | 98d00292861a8addef571523cc8556b36b0b1129 (diff) |
coverity#1340226 Missing break in switch
Change-Id: Ibd1c15ce65501d4dc6d0cea8c8e5f4e683d1b7a4
(cherry picked from commit c5bfac3f26dab2308b5a9797876927d410ac7876)
Reviewed-on: https://gerrit.libreoffice.org/20177
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-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 41ad7255dfcf..42f0403ef2bd 100644 --- a/sd/source/ui/view/ViewShellBase.cxx +++ b/sd/source/ui/view/ViewShellBase.cxx @@ -1255,6 +1255,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: |