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
42eb57df
Commit
42eb57df
authored
May 18, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
May 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Added SetWindowPos test that incorrectly sets focus.
parent
54e8bc84
Show 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 @
42eb57df
...
...
@@ -2157,6 +2157,14 @@ static void test_SetWindowPos(HWND hwnd, HWND hwnd2)
DestroyWindow
(
hwnd_grandchild
);
DestroyWindow
(
hwnd_child
);
DestroyWindow
(
hwnd_child2
);
hwnd_child
=
create_tool_window
(
WS_CHILD
|
WS_POPUP
|
WS_SYSMENU
,
hwnd2
);
ok
(
!!
hwnd_child
,
"Failed to create child window (%d)
\n
"
,
GetLastError
());
ret
=
SetWindowPos
(
hwnd_child
,
NULL
,
0
,
0
,
0
,
0
,
SWP_NOSIZE
|
SWP_NOMOVE
|
SWP_NOACTIVATE
|
SWP_SHOWWINDOW
);
ok
(
ret
,
"Got %d
\n
"
,
ret
);
flush_events
(
TRUE
);
todo_wine
check_active_state
(
hwnd2
,
hwnd2
,
hwnd2
);
DestroyWindow
(
hwnd_child
);
}
static
void
test_SetMenu
(
HWND
parent
)
...
...
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