taskmgr: Avoid dead assignment (Clang).

This commit is contained in:
Frédéric Delanoy 2011-12-07 12:11:47 +01:00 committed by Alexandre Julliard
parent 0325ec71e9
commit 5ed423f53b
1 changed files with 0 additions and 1 deletions

View File

@ -98,7 +98,6 @@ static void AdjustFrameSize(HWND hCntrl, HWND hDlg, int nXDifference, int nYDiff
} else {
cx = rc.left + nXDifference;
cy = rc.top + nYDifference;
sx = sy = 0;
SetWindowPos(hCntrl, NULL, cx, cy, 0, 0, SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOSIZE|SWP_NOZORDER);
}
InvalidateRect(hCntrl, NULL, TRUE);