comctl32: Removed dead store (llvm/clang).

oldstable
Ricardo Filipe 2008-11-19 23:27:51 +00:00 committed by Alexandre Julliard
parent 66b732e4f8
commit 5630124896
1 changed files with 1 additions and 2 deletions

View File

@ -1172,7 +1172,6 @@ MONTHCAL_HitTest(const MONTHCAL_INFO *infoPtr, LPARAM lParam)
x = lpht->pt.x;
y = lpht->pt.y;
retval = MCHT_NOWHERE;
ZeroMemory(&lpht->st, sizeof(lpht->st));
@ -1887,7 +1886,7 @@ static LRESULT theme_changed (const MONTHCAL_INFO* infoPtr)
{
HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
CloseThemeData (theme);
theme = OpenThemeData (infoPtr->hwndSelf, themeClass);
OpenThemeData (infoPtr->hwndSelf, themeClass);
return 0;
}