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
598993f4
Commit
598993f4
authored
Mar 16, 1999
by
Pavel Roskin
Committed by
Alexandre Julliard
Mar 16, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug introduced in WIN_FindWindow.
parent
30881622
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
win.c
windows/win.c
+3
-4
No files found.
windows/win.c
View file @
598993f4
...
...
@@ -1384,7 +1384,7 @@ static HWND WIN_FindWindow( HWND parent, HWND child, ATOM className,
}
while
(
pWnd
)
for
(
;
pWnd
;
WIN_UpdateWndPtr
(
&
pWnd
,
pWnd
->
next
)
)
{
if
(
className
&&
!
(
pWnd
->
dwStyle
&
WS_CHILD
))
{
...
...
@@ -1401,13 +1401,12 @@ static HWND WIN_FindWindow( HWND parent, HWND child, ATOM className,
{
retvalue
=
pWnd
->
hwndSelf
;
goto
end
;
}
}
if
(
pWnd
->
text
&&
!
strcmp
(
pWnd
->
text
,
title
))
{
retvalue
=
pWnd
->
hwndSelf
;
goto
end
;
}
WIN_UpdateWndPtr
(
&
pWnd
,
pWnd
->
next
);
}
}
retvalue
=
0
;
end:
...
...
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