Commit b0dd4177 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

uiautomationcore: Drop superfluous TRUE : FALSE conditional expression.

parent 572a9f6a
...@@ -1251,7 +1251,7 @@ static HRESULT uia_send_message_timeout(HWND hwnd, UINT msg, WPARAM wparam, LPAR ...@@ -1251,7 +1251,7 @@ static HRESULT uia_send_message_timeout(HWND hwnd, UINT msg, WPARAM wparam, LPAR
static BOOL is_top_level_hwnd(HWND hwnd) static BOOL is_top_level_hwnd(HWND hwnd)
{ {
return (GetAncestor(hwnd, GA_PARENT) == GetDesktopWindow()) ? TRUE : FALSE; return GetAncestor(hwnd, GA_PARENT) == GetDesktopWindow();
} }
static HRESULT get_uia_control_type_for_hwnd(HWND hwnd, int *control_type) static HRESULT get_uia_control_type_for_hwnd(HWND hwnd, int *control_type)
......
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