comctl32: Remove dead increments (clang).

This commit is contained in:
André Hentschel 2011-07-27 21:08:13 +02:00 committed by Alexandre Julliard
parent 787ab4572d
commit f931f479bc
2 changed files with 1 additions and 2 deletions

View File

@ -543,7 +543,6 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
/* Extract the caption */
psInfo->proppage[index].pszText = p;
TRACE("Tab %d %s\n",index,debugstr_w( p ));
p += lstrlenW( p ) + 1;
if (dwFlags & PSP_USETITLE)
{

View File

@ -1577,7 +1577,7 @@ REBAR_SizeToHeight(REBAR_INFO *infoPtr, int height)
}
}
else
extra -= REBAR_SizeChildrenToHeight(infoPtr, first_visible(infoPtr), infoPtr->uNumBands, extra / infoPtr->uNumRows, &fChanged);
REBAR_SizeChildrenToHeight(infoPtr, first_visible(infoPtr), infoPtr->uNumBands, extra / infoPtr->uNumRows, &fChanged);
if (fChanged)
REBAR_Layout(infoPtr);