Commit f931f479 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

comctl32: Remove dead increments (clang).

parent 787ab457
...@@ -543,7 +543,6 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp, ...@@ -543,7 +543,6 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
/* Extract the caption */ /* Extract the caption */
psInfo->proppage[index].pszText = p; psInfo->proppage[index].pszText = p;
TRACE("Tab %d %s\n",index,debugstr_w( p )); TRACE("Tab %d %s\n",index,debugstr_w( p ));
p += lstrlenW( p ) + 1;
if (dwFlags & PSP_USETITLE) if (dwFlags & PSP_USETITLE)
{ {
......
...@@ -1577,7 +1577,7 @@ REBAR_SizeToHeight(REBAR_INFO *infoPtr, int height) ...@@ -1577,7 +1577,7 @@ REBAR_SizeToHeight(REBAR_INFO *infoPtr, int height)
} }
} }
else 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) if (fChanged)
REBAR_Layout(infoPtr); REBAR_Layout(infoPtr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment