summaryrefslogtreecommitdiff
path: root/sfx2/source/bastyp/sfxhtml.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-11 15:54:28 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-11 20:21:51 +0000
commit50759b9f68652314cec63d55e7e23e0b4f1f770a (patch)
tree4c0565c8824f62e938581a2c392af2a6d0b7dda0 /sfx2/source/bastyp/sfxhtml.cxx
parentf9d13d6e3c18ec7214861a57d92389ed646a562b (diff)
coverity#1130402 Missing break in switch
Change-Id: Ifd86d24bb6a7957d4da392bed3f5ebda8d0fa690
Diffstat (limited to 'sfx2/source/bastyp/sfxhtml.cxx')
-rw-r--r--sfx2/source/bastyp/sfxhtml.cxx2
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;