diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-05 10:16:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-05 13:35:53 +0100 |
commit | abf842e4b125b9f863ea4c2af17ad6ac7d82b15e (patch) | |
tree | 912f97ac6821cccaa86f54fc5dcb6c3015d150e7 /toolkit | |
parent | 91eeea0cdf5e2bd7d6cd05348a8f777707fd69cc (diff) |
coverity#705323 Missing break in switch, assuming its intentional
Change-Id: Ibb8fe4e1d13a24f810fbdf4978606c35890a9cfd
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxwindows.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx index 9016b04abf0f..9752b3717c12 100644 --- a/toolkit/source/awt/vclxwindows.cxx +++ b/toolkit/source/awt/vclxwindows.cxx @@ -2938,7 +2938,7 @@ void VCLXFixedHyperlink::ProcessWindowEvent( const VclWindowEvent& rVclWindowEve } } } - + //fall-through default: VCLXWindow::ProcessWindowEvent( rVclWindowEvent ); break; |