Commit 33e275a1 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

comctl32/tests: Fix treeview test failures on French Windows XP.

parent b739ed68
...@@ -220,6 +220,9 @@ static const struct message test_right_click_seq[] = { ...@@ -220,6 +220,9 @@ static const struct message test_right_click_seq[] = {
{ WM_RBUTTONDOWN, sent|wparam, MK_RBUTTON }, { WM_RBUTTONDOWN, sent|wparam, MK_RBUTTON },
{ WM_CAPTURECHANGED, sent|defwinproc }, { WM_CAPTURECHANGED, sent|defwinproc },
{ TVM_GETNEXTITEM, sent|wparam|lparam|defwinproc, TVGN_CARET, 0 }, { TVM_GETNEXTITEM, sent|wparam|lparam|defwinproc, TVGN_CARET, 0 },
{ WM_NCHITTEST, sent|optional },
{ WM_SETCURSOR, sent|optional },
{ WM_MOUSEMOVE, sent|optional },
{ 0 } { 0 }
}; };
...@@ -367,6 +370,8 @@ static const struct message parent_vk_return_seq[] = { ...@@ -367,6 +370,8 @@ static const struct message parent_vk_return_seq[] = {
static const struct message parent_right_click_seq[] = { static const struct message parent_right_click_seq[] = {
{ WM_NOTIFY, sent|id, 0, 0, NM_RCLICK }, { WM_NOTIFY, sent|id, 0, 0, NM_RCLICK },
{ WM_CONTEXTMENU, sent }, { WM_CONTEXTMENU, sent },
{ WM_NOTIFY, sent|optional },
{ WM_SETCURSOR, sent|optional },
{ 0 } { 0 }
}; };
......
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