mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Removed W32k from SelectObject. Doesnt effect anything.
svn path=/trunk/; revision=5175
This commit is contained in:
parent
377803bd56
commit
e1c932cd9e
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: draw.c,v 1.14 2003/07/20 01:24:52 jimtabor Exp $
|
/* $Id: draw.c,v 1.15 2003/07/20 03:01:13 jimtabor Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS user32.dll
|
* PROJECT: ReactOS user32.dll
|
||||||
* FILE: lib/user32/windows/input.c
|
* FILE: lib/user32/windows/input.c
|
||||||
|
@ -1479,7 +1479,7 @@ RECT r = *lprc;
|
||||||
PatBlt( hDC, r.left, r.top, r.right - r.left, 1, PATCOPY );
|
PatBlt( hDC, r.left, r.top, r.right - r.left, 1, PATCOPY );
|
||||||
PatBlt( hDC, r.left, r.bottom - 1, r.right - r.left, 1, PATCOPY );
|
PatBlt( hDC, r.left, r.bottom - 1, r.right - r.left, 1, PATCOPY );
|
||||||
|
|
||||||
W32kSelectObject( hDC, oldbrush );
|
SelectObject( hDC, oldbrush );
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue