diff options
author | Joren De Cuyper <joren.libreoffice@telenet.be> | 2013-02-20 17:55:08 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-02-21 15:30:34 +0000 |
commit | bf61cf8d76e20d444e8617f560e4f44899f4120b (patch) | |
tree | 64355c77dd5e7dfc7a015a951aab2f60fce5449f | |
parent | 68b207d08bf0c0197a7309cc58da8b8af6727398 (diff) |
Missing break in switch sidebarwin.cxx
Change-Id: Ia195511369c315cf865fed321edc1ace2c82443b
Reviewed-on: https://gerrit.libreoffice.org/2299
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
-rw-r--r-- | sw/source/ui/docvw/SidebarWin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/ui/docvw/SidebarWin.cxx b/sw/source/ui/docvw/SidebarWin.cxx index 0d128eed4c1c..467d310a05f0 100644 --- a/sw/source/ui/docvw/SidebarWin.cxx +++ b/sw/source/ui/docvw/SidebarWin.cxx @@ -933,6 +933,7 @@ void SwSidebarWin::ExecuteCommand(sal_uInt16 nSlot) aItems[1] = 0; mrView.GetViewFrame()->GetBindings().Execute( nSlot, aItems, 0, SFX_CALLMODE_ASYNCHRON ); } + break; default: mrView.GetViewFrame()->GetBindings().Execute( nSlot ); break; |