winhlp32: Use BOOL type where appropriate.

oldstable
Frédéric Delanoy 2013-10-22 00:16:10 +02:00 committed by Alexandre Julliard
parent 0666ac3ed8
commit 6eadc8ca4e
1 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ static void WINHELP_InitFonts(HWND hWnd)
#define FONTS_LEN (sizeof(logfontlist)/sizeof(*logfontlist))
static HFONT fonts[FONTS_LEN];
static BOOL init = 0;
static BOOL init = FALSE;
win->fonts_len = FONTS_LEN;
win->fonts = fonts;
@ -84,7 +84,7 @@ static void WINHELP_InitFonts(HWND hWnd)
fonts[i] = CreateFontIndirectW(&logfontlist[i]);
}
init = 1;
init = TRUE;
}
}