summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-05 10:16:52 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-05 13:35:53 +0100
commitabf842e4b125b9f863ea4c2af17ad6ac7d82b15e (patch)
tree912f97ac6821cccaa86f54fc5dcb6c3015d150e7 /toolkit
parent91eeea0cdf5e2bd7d6cd05348a8f777707fd69cc (diff)
coverity#705323 Missing break in switch, assuming its intentional
Change-Id: Ibb8fe4e1d13a24f810fbdf4978606c35890a9cfd
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxwindows.cxx2
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;