comctl32: Remove dead increments (clang).
This commit is contained in:
parent
787ab4572d
commit
f931f479bc
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue