comctl32: Fix a logical operator typo.

This commit is contained in:
Andrew Talbot 2011-08-27 17:42:27 +01:00 committed by Alexandre Julliard
parent c74c544cc6
commit dd5a1913ae

View File

@ -2014,7 +2014,7 @@ TOOLTIPS_SetFont (TOOLTIPS_INFO *infoPtr, HFONT hFont, BOOL redraw)
lf.lfWeight = FW_BOLD; lf.lfWeight = FW_BOLD;
infoPtr->hTitleFont = CreateFontIndirectW(&lf); infoPtr->hTitleFont = CreateFontIndirectW(&lf);
if (redraw & (infoPtr->nCurrentTool != -1)) { if (redraw && infoPtr->nCurrentTool != -1) {
FIXME("full redraw needed!\n"); FIXME("full redraw needed!\n");
} }