Kaydet (Commit) 94e2459c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#705245 Missing break in switch, assuming intentional

Change-Id: I2ac6acde603c89c5b7736ec7f1a1b42b28726827
üst 0017cafc
......@@ -116,6 +116,7 @@ namespace svt
// drop down the list box
else if (rEvt.GetKeyCode().IsMod2() && rEvt.GetKeyCode().GetCode() == KEY_DOWN)
return false;
// fall-through
case KEY_PAGEUP:
case KEY_PAGEDOWN:
case KEY_RETURN:
......@@ -213,7 +214,7 @@ namespace svt
else
if (rEvt.GetKeyCode().IsMod2() && rEvt.GetKeyCode().GetCode() == KEY_DOWN)
return false;
//fall-through
// fall-through
case KEY_PAGEUP:
case KEY_PAGEDOWN:
if (rBox.IsTravelSelect())
......
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