Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
6ef97acd
Commit
6ef97acd
authored
Oct 08, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Oct 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase: IVideoWindow::get_Visible() returns OATRUE, not TRUE.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7272891e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
videorenderer.c
dlls/quartz/tests/videorenderer.c
+8
-8
window.c
dlls/strmbase/window.c
+1
-1
No files found.
dlls/quartz/tests/videorenderer.c
View file @
6ef97acd
...
...
@@ -1504,7 +1504,7 @@ static void test_video_window_state(IVideoWindow *window, HWND hwnd, HWND our_hw
todo_wine
ok
(
state
==
SW_SHOW
,
"Got state %d.
\n
"
,
state
);
hr
=
IVideoWindow_get_Visible
(
window
,
&
state
);
todo_wine
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
IsWindowVisible
(
hwnd
),
"Window should be visible.
\n
"
);
ok
(
!
IsIconic
(
hwnd
),
"Window should not be minimized.
\n
"
);
...
...
@@ -1521,7 +1521,7 @@ static void test_video_window_state(IVideoWindow *window, HWND hwnd, HWND our_hw
todo_wine
ok
(
state
==
SW_MINIMIZE
,
"Got state %d.
\n
"
,
state
);
hr
=
IVideoWindow_get_Visible
(
window
,
&
state
);
todo_wine
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
IsWindowVisible
(
hwnd
),
"Window should be visible.
\n
"
);
ok
(
IsIconic
(
hwnd
),
"Window should be minimized.
\n
"
);
...
...
@@ -1536,7 +1536,7 @@ static void test_video_window_state(IVideoWindow *window, HWND hwnd, HWND our_hw
todo_wine
ok
(
state
==
SW_SHOW
,
"Got state %d.
\n
"
,
state
);
hr
=
IVideoWindow_get_Visible
(
window
,
&
state
);
todo_wine
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
IsWindowVisible
(
hwnd
),
"Window should be visible.
\n
"
);
ok
(
!
IsIconic
(
hwnd
),
"Window should not be minimized.
\n
"
);
...
...
@@ -1551,7 +1551,7 @@ static void test_video_window_state(IVideoWindow *window, HWND hwnd, HWND our_hw
ok
(
state
==
SW_MAXIMIZE
,
"Got state %d.
\n
"
,
state
);
hr
=
IVideoWindow_get_Visible
(
window
,
&
state
);
todo_wine
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
IsWindowVisible
(
hwnd
),
"Window should be visible.
\n
"
);
ok
(
!
IsIconic
(
hwnd
),
"Window should be minimized.
\n
"
);
...
...
@@ -1584,7 +1584,7 @@ static void test_video_window_state(IVideoWindow *window, HWND hwnd, HWND our_hw
todo_wine
ok
(
state
==
SW_SHOW
,
"Got state %d.
\n
"
,
state
);
hr
=
IVideoWindow_get_Visible
(
window
,
&
state
);
todo_wine
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
IsWindowVisible
(
hwnd
),
"Window should be visible.
\n
"
);
ok
(
!
IsIconic
(
hwnd
),
"Window should not be minimized.
\n
"
);
...
...
@@ -1828,7 +1828,7 @@ static void test_video_window_owner(IVideoWindow *window, HWND hwnd, HWND our_hw
hr
=
IVideoWindow_get_Visible
(
window
,
&
state
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
todo_wine
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
ok
(
state
==
OATRUE
,
"Got state %d.
\n
"
,
state
);
}
static
void
test_video_window_messages
(
IVideoWindow
*
window
,
HWND
hwnd
,
HWND
our_hwnd
)
...
...
@@ -1938,14 +1938,14 @@ static void test_video_window_autoshow(IVideoWindow *window, IFilterGraph2 *grap
hr
=
IVideoWindow_get_Visible
(
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
=
IMediaControl_Stop
(
control
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IVideoWindow_get_Visible
(
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_AutoShow
(
window
,
OAFALSE
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
...
...
dlls/strmbase/window.c
View file @
6ef97acd
...
...
@@ -449,7 +449,7 @@ HRESULT WINAPI BaseControlWindowImpl_get_Visible(IVideoWindow *iface, LONG *pVis
TRACE
(
"(%p/%p)->(%p)
\n
"
,
This
,
iface
,
pVisible
);
*
pVisible
=
IsWindowVisible
(
This
->
baseWindow
.
hWnd
);
*
pVisible
=
IsWindowVisible
(
This
->
baseWindow
.
hWnd
)
?
OATRUE
:
OAFALSE
;
return
S_OK
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment