From: Thomas Faber Date: Tue, 31 Jan 2017 12:53:39 +0000 (+0000) Subject: [MSPAINT] X-Git-Tag: ReactOS-0.4.4-FOSDEM2017~1^2~4 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=ea461699aaff8a72d5f2ab88f45d1ae4b933cc67 [MSPAINT] - Add missing break in CMainWindow::OnCommand/IDM_FORMATICONBAR. CID 1322024. svn path=/trunk/; revision=73642 --- diff --git a/reactos/base/applications/mspaint/winproc.cpp b/reactos/base/applications/mspaint/winproc.cpp index 55735e402b5..d6de2110a7e 100644 --- a/reactos/base/applications/mspaint/winproc.cpp +++ b/reactos/base/applications/mspaint/winproc.cpp @@ -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);