Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
65681a0e
Commit
65681a0e
authored
Jan 31, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add the tests for minimize/restore MDI child sequence, fix some failures.
parent
494c42d0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
83 additions
and
10 deletions
+83
-10
mdi.c
dlls/user32/mdi.c
+2
-2
msg.c
dlls/user32/tests/msg.c
+78
-8
winpos.c
dlls/winex11.drv/winpos.c
+3
-0
No files found.
dlls/user32/mdi.c
View file @
65681a0e
...
...
@@ -1559,8 +1559,8 @@ LRESULT WINAPI DefMDIChildProcW( HWND hwnd, UINT message,
{
HWND
switchTo
=
MDI_GetWindow
(
ci
,
hwnd
,
TRUE
,
WS_MINIMIZE
);
if
(
switchTo
)
SendMessageW
(
switchTo
,
WM_CHILDACTIVATE
,
0
,
0
);
if
(
!
switchTo
)
switchTo
=
hwnd
;
SendMessageW
(
switchTo
,
WM_CHILDACTIVATE
,
0
,
0
);
}
MDI_PostUpdate
(
client
,
ci
,
SB_BOTH
+
1
);
...
...
dlls/user32/tests/msg.c
View file @
65681a0e
This diff is collapsed.
Click to expand it.
dlls/winex11.drv/winpos.c
View file @
65681a0e
...
...
@@ -718,6 +718,9 @@ BOOL X11DRV_ShowWindow( HWND hwnd, INT cmd )
}
else
WIN_ReleasePtr
(
wndPtr
);
/* if previous state was minimized Windows sets focus to the window */
if
(
style
&
WS_MINIMIZE
)
SetFocus
(
hwnd
);
return
wasVisible
;
}
...
...
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