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
ea7e9ed2
Commit
ea7e9ed2
authored
Feb 06, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 06, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: RealChildWindowFromPoint should skip invisible windows.
parent
8c7f3964
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
win.c
dlls/user32/tests/win.c
+1
-1
winpos.c
dlls/user32/winpos.c
+1
-1
No files found.
dlls/user32/tests/win.c
View file @
ea7e9ed2
...
...
@@ -7038,9 +7038,9 @@ static void test_child_window_from_point(void)
DestroyWindow
(
parent
);
todo_wine
ok
(
!
found_invisible
,
"found %d invisible windows
\n
"
,
found_invisible
);
ok
(
found_disabled
,
"found %d disabled windows
\n
"
,
found_disabled
);
todo_wine
ok
(
found_groupbox
==
4
,
"found %d groupbox windows
\n
"
,
found_groupbox
);
ok
(
found_httransparent
,
"found %d found_httransparent windows
\n
"
,
found_httransparent
);
todo_wine
...
...
dlls/user32/winpos.c
View file @
ea7e9ed2
...
...
@@ -376,7 +376,7 @@ HWND WINAPI ChildWindowFromPoint( HWND hwndParent, POINT pt )
*/
HWND
WINAPI
RealChildWindowFromPoint
(
HWND
hwndParent
,
POINT
pt
)
{
return
ChildWindowFromPointEx
(
hwndParent
,
pt
,
CWP_SKIPTRANSPARENT
);
return
ChildWindowFromPointEx
(
hwndParent
,
pt
,
CWP_SKIPTRANSPARENT
|
CWP_SKIPINVISIBLE
);
}
/*******************************************************************
...
...
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