Kaydet (Commit) 50759b9f authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1130402 Missing break in switch

Change-Id: Ifd86d24bb6a7957d4da392bed3f5ebda8d0fa690
üst f9d13d6e
...@@ -151,12 +151,14 @@ bool SfxHTMLParser::ParseAreaOptions(ImageMap * pImageMap, const OUString& rBase ...@@ -151,12 +151,14 @@ bool SfxHTMLParser::ParseAreaOptions(ImageMap * pImageMap, const OUString& rBase
case HTML_O_ONMOUSEOVER: case HTML_O_ONMOUSEOVER:
eScrpType = JAVASCRIPT; eScrpType = JAVASCRIPT;
//fallthrough
case HTML_O_SDONMOUSEOVER: case HTML_O_SDONMOUSEOVER:
nEvent = nEventMouseOver; nEvent = nEventMouseOver;
goto IMAPOBJ_SETEVENT; goto IMAPOBJ_SETEVENT;
case HTML_O_ONMOUSEOUT: case HTML_O_ONMOUSEOUT:
eScrpType = JAVASCRIPT; eScrpType = JAVASCRIPT;
//fallthrough
case HTML_O_SDONMOUSEOUT: case HTML_O_SDONMOUSEOUT:
nEvent = nEventMouseOut; nEvent = nEventMouseOut;
goto IMAPOBJ_SETEVENT; goto IMAPOBJ_SETEVENT;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment