Fix copy-paste-bug in SubtractRect

svn path=/trunk/; revision=65736
This commit is contained in:
Timo Kreuzer 2014-12-18 08:13:01 +00:00
parent 54f66b4232
commit dd9435905a

View file

@ -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);