mirror of
https://github.com/reactos/wine.git
synced 2024-12-01 07:30:37 +00:00
taskmgr: Avoid dead assignment (Clang).
This commit is contained in:
parent
0325ec71e9
commit
5ed423f53b
@ -98,7 +98,6 @@ static void AdjustFrameSize(HWND hCntrl, HWND hDlg, int nXDifference, int nYDiff
|
|||||||
} else {
|
} else {
|
||||||
cx = rc.left + nXDifference;
|
cx = rc.left + nXDifference;
|
||||||
cy = rc.top + nYDifference;
|
cy = rc.top + nYDifference;
|
||||||
sx = sy = 0;
|
|
||||||
SetWindowPos(hCntrl, NULL, cx, cy, 0, 0, SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOSIZE|SWP_NOZORDER);
|
SetWindowPos(hCntrl, NULL, cx, cy, 0, 0, SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOSIZE|SWP_NOZORDER);
|
||||||
}
|
}
|
||||||
InvalidateRect(hCntrl, NULL, TRUE);
|
InvalidateRect(hCntrl, NULL, TRUE);
|
||||||
|
Loading…
Reference in New Issue
Block a user