[MSPAINT] Do type-cast (BOOL) for TB_ISBUTTONCHECKED return

CORE-19094
This commit is contained in:
Katayama Hirofumi MZ
2023-10-12 19:31:22 +09:00
parent bc28675a44
commit 4306e261ee

View File

@@ -504,7 +504,7 @@ LRESULT CFontsDialog::OnCommand(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& b
UINT id = LOWORD(wParam);
UINT codeNotify = HIWORD(wParam);
HWND hwndToolbar = GetDlgItem(IDD_FONTSTOOLBAR);
BOOL bChecked = ::SendMessage(hwndToolbar, TB_ISBUTTONCHECKED, id, 0);
BOOL bChecked = (BOOL)::SendMessage(hwndToolbar, TB_ISBUTTONCHECKED, id, 0);
switch (id)
{