diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-04 12:18:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-04 12:34:16 +0100 |
commit | d18dc5dd22d34a089f34e300b2cc4cb36cb27464 (patch) | |
tree | 53b55939e55de594622e2051769bcb144c99c0d0 /dbaccess | |
parent | fcac0aef46a7ed760524a0406d98b4601b7a25da (diff) |
coverity#1000657 Missing break in switch
Change-Id: I03acdc2769e893fc7ecb2885302951852804867b
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/querydesign/limitboxcontroller.cxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/dbaccess/source/ui/querydesign/limitboxcontroller.cxx b/dbaccess/source/ui/querydesign/limitboxcontroller.cxx index cb616d4b4f99..4978043ef2ff 100644 --- a/dbaccess/source/ui/querydesign/limitboxcontroller.cxx +++ b/dbaccess/source/ui/querydesign/limitboxcontroller.cxx @@ -71,20 +71,15 @@ bool LimitBoxImpl::Notify( NotifyEvent& rNEvt ) switch ( nCode ) { case KEY_ESCAPE: - { Undo(); - } + // fall-through case KEY_RETURN: - { GrabFocusToDocument(); nHandled = true; break; - } case KEY_TAB: - { Select(); break; - } } break; } |