diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-05 10:14:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-05 13:35:53 +0100 |
commit | 91eeea0cdf5e2bd7d6cd05348a8f777707fd69cc (patch) | |
tree | 8aafddb03a92ed37713de93efa686dc9f9f3fdac /svx | |
parent | a4d416a7c896b3973eef0486ae49ff7091513074 (diff) |
coverity#705261 Missing break in switch, assuming its intentional
Change-Id: Ia19f7790871dec7022c5d1f57f082638b70403fb
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/fmcomp/gridctrl.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svx/source/fmcomp/gridctrl.cxx b/svx/source/fmcomp/gridctrl.cxx index a85f86cc1954..fd540881bcdf 100644 --- a/svx/source/fmcomp/gridctrl.cxx +++ b/svx/source/fmcomp/gridctrl.cxx @@ -2806,6 +2806,7 @@ void DbGridControl::Command(const CommandEvent& rEvt) return; } } + //fall-through default: DbGridControl_Base::Command(rEvt); } |