Ricardo Filipe : comctl32: Removed dead increment (llvm/clang).
Module: wine Branch: master Commit: 422cd0bc3ad5616049367ea0a9235068b9213dc7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=422cd0bc3ad5616049367ea0a9... Author: Ricardo Filipe <ricardo_barbano(a)hotmail.com> Date: Wed Nov 19 23:33:55 2008 +0000 comctl32: Removed dead increment (llvm/clang). --- dlls/comctl32/rebar.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/comctl32/rebar.c b/dlls/comctl32/rebar.c index c8c200f..89ac420 100644 --- a/dlls/comctl32/rebar.c +++ b/dlls/comctl32/rebar.c @@ -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 ); }
participants (1)
-
Alexandre Julliard