add breaks per PVS suggestion.

This commit is contained in:
jackchentwkh 2017-08-21 10:38:55 +08:00
parent 177cfaebff
commit cbe2a0588b
1 changed files with 2 additions and 0 deletions

View File

@ -430,6 +430,7 @@ LRESULT CALLBACK WndMain::WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lP
break;
}
};
break; // added per PVS suggestion.
case WM_TIMER:
{
@ -451,6 +452,7 @@ LRESULT CALLBACK WndMain::WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lP
SendMessage(m_hwndChild, uMsg, wParam, lParam);
}
};
break; // added per PVS suggestion.
case WM_PAINT:
{