[MAGNIFY]
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Wed, 13 Jul 2016 16:27:39 +0000 (16:27 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Wed, 13 Jul 2016 16:27:39 +0000 (16:27 +0000)
Missing break. CID 1363532
CORE-11593 #resolve

svn path=/trunk/; revision=71926

reactos/base/applications/magnify/magnifier.c

index 79c3f91..4c403d6 100644 (file)
@@ -726,6 +726,7 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
                     SetWindowPos(hWnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
                 ReleaseCapture();
             }
+            break;
 
         case WM_SIZE:
             if(AppBarConfig.uEdge>=0) DoAppBarStuff(ABM_SETPOS);
@@ -814,6 +815,7 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
                         ShowWindow(hMainWnd, SW_HIDE);
                     else
                         ShowWindow(hMainWnd, SW_SHOW);
+                    break;
             }
             return 0;
         }