[MSPAINT]
authorThomas Faber <thomas.faber@reactos.org>
Tue, 31 Jan 2017 12:53:39 +0000 (12:53 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Tue, 31 Jan 2017 12:53:39 +0000 (12:53 +0000)
- Add missing break in CMainWindow::OnCommand/IDM_FORMATICONBAR. CID 1322024.

svn path=/trunk/; revision=73642

reactos/base/applications/mspaint/winproc.cpp

index 55735e4..d6de211 100644 (file)
@@ -645,7 +645,7 @@ LRESULT CMainWindow::OnCommand(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bH
             break;
         case IDM_FORMATICONBAR:
             textEditWindow.ShowWindow(textEditWindow.IsWindowVisible() ? SW_HIDE : SW_SHOW);
-
+            break;
         case IDM_VIEWSHOWGRID:
             showGrid = !showGrid;
             imageArea.Invalidate(FALSE);