Commit 2ddbadcc authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

explorerframe/tests: The width is between the RECT left and right fields.

parent 6eb70eea
...@@ -1584,7 +1584,7 @@ static void test_basics(void) ...@@ -1584,7 +1584,7 @@ static void test_basics(void)
hr = INameSpaceTreeControl_GetItemRect(pnstc, psitestdir, &rc); hr = INameSpaceTreeControl_GetItemRect(pnstc, psitestdir, &rc);
ok(hr == S_OK, "Got 0x%08x\n", hr); ok(hr == S_OK, "Got 0x%08x\n", hr);
ok(rc.top != rc.bottom, "Got 0 height.\n"); ok(rc.top != rc.bottom, "Got 0 height.\n");
ok(rc.left != rc.bottom, "Got 0 width.\n"); ok(rc.left != rc.right, "Got 0 width.\n");
height = 0; height = 0;
hwnd_tv = get_treeview_hwnd(pnstc); hwnd_tv = get_treeview_hwnd(pnstc);
......
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