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
84a2459d
Commit
84a2459d
authored
May 31, 2017
by
Zebediah Figura
Committed by
Alexandre Julliard
Jun 02, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Add tests for minimizing MDI windows.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1984e86b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
win.c
dlls/user32/tests/win.c
+8
-0
No files found.
dlls/user32/tests/win.c
View file @
84a2459d
...
...
@@ -1841,6 +1841,14 @@ static void test_MDI_child_stack(HWND mdi_client)
"Broken MDI child stack:
\n
expected: %p->%p->%p->%p, but got: %p->%p->%p->%p
\n
"
,
child_4
,
child_2
,
child_1
,
child_3
,
stack
[
0
],
stack
[
1
],
stack
[
2
],
stack
[
3
]);
trace
(
"Minimize child %p
\n
"
,
child_4
);
ShowWindow
(
child_4
,
SW_MINIMIZE
);
stack
[
0
]
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
stack
[
1
]
=
GetWindow
(
stack
[
0
],
GW_HWNDNEXT
);
todo_wine
ok
(
stack
[
0
]
==
child_4
,
"Expected %p, got %p
\n
"
,
child_4
,
stack
[
0
]);
todo_wine
ok
(
stack
[
1
]
==
NULL
,
"Expected NULL, got %p
\n
"
,
stack
[
1
]);
DestroyWindow
(
child_1
);
DestroyWindow
(
child_2
);
DestroyWindow
(
child_3
);
...
...
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