comctl32: Removed dead increment (llvm/clang).

This commit is contained in:
Ricardo Filipe 2008-11-19 23:33:55 +00:00 committed by Alexandre Julliard
parent 5630124896
commit 422cd0bc3a

View file

@ -484,7 +484,7 @@ REBAR_DrawChevron (HDC hdc, INT left, INT top, INT colorRef)
MoveToEx (hdc, x, y, NULL);
LineTo (hdc, x+3, y++); x++;
MoveToEx (hdc, x, y, NULL);
LineTo (hdc, x+1, y++);
LineTo (hdc, x+1, y);
SelectObject( hdc, hOldPen );
DeleteObject( hPen );
}