Skip to content
Snippets Groups Projects
Commit f0555d61 authored by Sean McBride's avatar Sean McBride
Browse files

Added a break statement in a switch to fix inadvertent fallthrough

parent b4e3e632
No related branches found
No related tags found
No related merge requests found
......@@ -775,6 +775,7 @@ LRESULT vtkWin32OpenGLRenderWindow::MessageProc(
this->SetSize((int)LOWORD(lParam), (int)HIWORD(lParam));
return 0;
}
break;
case WM_PALETTECHANGED:
/* realize palette if this is *not* the current window */
if (this->ContextId && this->Palette && (HWND)wParam != hWnd)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment