mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[USER32]
Fix copy-paste-bug in SubtractRect svn path=/trunk/; revision=65736
This commit is contained in:
parent
54f66b4232
commit
dd9435905a
1 changed files with 2 additions and 2 deletions
|
@ -218,8 +218,8 @@ SubtractRect(LPRECT lprcDst,
|
|||
{
|
||||
if(lprcDst->top == tempRect.top)
|
||||
lprcDst->top = tempRect.bottom;
|
||||
else if(lprcDst->right == tempRect.right)
|
||||
lprcDst->right = tempRect.left;
|
||||
else if(lprcDst->bottom == tempRect.bottom)
|
||||
lprcDst->bottom = tempRect.top;
|
||||
}
|
||||
|
||||
return(TRUE);
|
||||
|
|
Loading…
Reference in a new issue