Commit 0b977adc authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

winefile: Use BOOL type where appropriate.

parent 87c72332
...@@ -2695,7 +2695,7 @@ static void create_tree_window(HWND parent, Pane* pane, UINT id, UINT id_header, ...@@ -2695,7 +2695,7 @@ static void create_tree_window(HWND parent, Pane* pane, UINT id, UINT id_header,
{ {
static const WCHAR sListBox[] = {'L','i','s','t','B','o','x','\0'}; static const WCHAR sListBox[] = {'L','i','s','t','B','o','x','\0'};
static int s_init = 0; static BOOL s_init = FALSE;
Entry* entry = pane->root; Entry* entry = pane->root;
pane->hwnd = CreateWindowW(sListBox, sEmpty, WS_CHILD|WS_VISIBLE|WS_HSCROLL|WS_VSCROLL| pane->hwnd = CreateWindowW(sListBox, sEmpty, WS_CHILD|WS_VISIBLE|WS_HSCROLL|WS_VSCROLL|
...@@ -2713,7 +2713,7 @@ static void create_tree_window(HWND parent, Pane* pane, UINT id, UINT id_header, ...@@ -2713,7 +2713,7 @@ static void create_tree_window(HWND parent, Pane* pane, UINT id, UINT id_header,
/* calculate column widths */ /* calculate column widths */
if (!s_init) { if (!s_init) {
s_init = 1; s_init = TRUE;
init_output(pane->hwnd); init_output(pane->hwnd);
} }
......
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