diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 15:54:28 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 20:21:51 +0000 |
commit | 50759b9f68652314cec63d55e7e23e0b4f1f770a (patch) | |
tree | 4c0565c8824f62e938581a2c392af2a6d0b7dda0 /sfx2 | |
parent | f9d13d6e3c18ec7214861a57d92389ed646a562b (diff) |
coverity#1130402 Missing break in switch
Change-Id: Ifd86d24bb6a7957d4da392bed3f5ebda8d0fa690
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/bastyp/sfxhtml.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sfx2/source/bastyp/sfxhtml.cxx b/sfx2/source/bastyp/sfxhtml.cxx index 9ad03eb34e04..8e95e568e73e 100644 --- a/sfx2/source/bastyp/sfxhtml.cxx +++ b/sfx2/source/bastyp/sfxhtml.cxx @@ -151,12 +151,14 @@ bool SfxHTMLParser::ParseAreaOptions(ImageMap * pImageMap, const OUString& rBase case HTML_O_ONMOUSEOVER: eScrpType = JAVASCRIPT; + //fallthrough case HTML_O_SDONMOUSEOVER: nEvent = nEventMouseOver; goto IMAPOBJ_SETEVENT; case HTML_O_ONMOUSEOUT: eScrpType = JAVASCRIPT; + //fallthrough case HTML_O_SDONMOUSEOUT: nEvent = nEventMouseOut; goto IMAPOBJ_SETEVENT; |