Commit 7272891e authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

strmbase: IVideoWindow::get_AutoShow() returns OATRUE, not TRUE.

parent 89d9bcb1
......@@ -1928,7 +1928,7 @@ static void test_video_window_autoshow(IVideoWindow *window, IFilterGraph2 *grap
hr = IVideoWindow_get_AutoShow(window, &l);
ok(hr == S_OK, "Got hr %#x.\n", hr);
todo_wine ok(l == OATRUE, "Got %d.\n", l);
ok(l == OATRUE, "Got %d.\n", l);
hr = IVideoWindow_put_Visible(window, OAFALSE);
ok(hr == S_OK, "Got hr %#x.\n", hr);
......
......@@ -203,7 +203,7 @@ HRESULT WINAPI BaseControlWindow_Init(BaseControlWindow *pControlWindow,
if (SUCCEEDED(hr))
{
pControlWindow->IVideoWindow_iface.lpVtbl = lpVtbl;
pControlWindow->AutoShow = TRUE;
pControlWindow->AutoShow = OATRUE;
pControlWindow->hwndDrain = NULL;
pControlWindow->hwndOwner = NULL;
pControlWindow->pFilter = owner;
......
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