Author: jimtabor
Date: Tue Oct 21 03:13:21 2014
New Revision: 64860

URL: http://svn.reactos.org/svn/reactos?rev=64860&view=rev
Log:
[User32]
- Remove code that breaks wine release 1.7.29 user32 input tests. Code was 
there since r2505.
- So due to this commit, over compensating hacks can break.

Modified:
    trunk/reactos/win32ss/user/user32/windows/defwnd.c

Modified: trunk/reactos/win32ss/user/user32/windows/defwnd.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/user32/windows/defwnd.c?rev=64860&r1=64859&r2=64860&view=diff
==============================================================================
--- trunk/reactos/win32ss/user/user32/windows/defwnd.c  [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/user32/windows/defwnd.c  [iso-8859-1] Tue Oct 21 
03:13:21 2014
@@ -622,10 +622,7 @@
         case WM_RBUTTONUP:
         {
             POINT Pt;
-            if (hWnd == GetCapture())
-            {
-                ReleaseCapture();
-            }
+
             Pt.x = GET_X_LPARAM(lParam);
             Pt.y = GET_Y_LPARAM(lParam);
             ClientToScreen(hWnd, &Pt);


Reply via email to