Commit 1c55ba0b authored by Ricardo Filipe's avatar Ricardo Filipe Committed by Alexandre Julliard

comctl32: Removed dead assignments (llvm/clang).

parent 2f98fce9
......@@ -152,7 +152,6 @@ static void TRACKBAR_RecalculateTics (TRACKBAR_INFO *infoPtr)
if (infoPtr->uTicFreq && infoPtr->lRangeMax >= infoPtr->lRangeMin)
nrTics=(infoPtr->lRangeMax - infoPtr->lRangeMin)/infoPtr->uTicFreq;
else {
nrTics = 0;
Free (infoPtr->tics);
infoPtr->tics = NULL;
infoPtr->uNumTics = 0;
......@@ -1590,7 +1589,7 @@ static LRESULT theme_changed (const TRACKBAR_INFO* infoPtr)
{
HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
CloseThemeData (theme);
theme = OpenThemeData (infoPtr->hwndSelf, themeClass);
OpenThemeData (infoPtr->hwndSelf, themeClass);
return 0;
}
......
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