Module: wine Branch: master Commit: ab9cbecf1b3f48810a11790fc5f17023709903db URL: http://source.winehq.org/git/wine.git/?a=commit;h=ab9cbecf1b3f48810a11790fc5...
Author: Maarten Lankhorst m.b.lankhorst@gmail.com Date: Thu May 20 00:01:05 2010 +0200
quartz: Respect autoshow in video renderer.
---
dlls/quartz/videorenderer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/quartz/videorenderer.c b/dlls/quartz/videorenderer.c index f8a5852..f25ab17 100644 --- a/dlls/quartz/videorenderer.c +++ b/dlls/quartz/videorenderer.c @@ -1828,7 +1828,7 @@ static HRESULT WINAPI Videowindow_put_AutoShow(IVideoWindow *iface,
TRACE("(%p/%p)->(%d)\n", This, iface, AutoShow);
- This->AutoShow = 1; /* FIXME: Should be AutoShow */; + This->AutoShow = AutoShow;
return S_OK; }