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
251160fe
Commit
251160fe
authored
Aug 20, 2013
by
Ken Thomases
Committed by
Alexandre Julliard
Aug 21, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemac: Always trace arguments in macdrv_ShowWindow().
parent
121eb08b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
window.c
dlls/winemac.drv/window.c
+3
-3
No files found.
dlls/winemac.drv/window.c
View file @
251160fe
...
...
@@ -1026,6 +1026,9 @@ UINT CDECL macdrv_ShowWindow(HWND hwnd, INT cmd, RECT *rect, UINT swp)
struct
macdrv_win_data
*
data
=
get_win_data
(
hwnd
);
CGRect
frame
;
TRACE
(
"win %p/%p cmd %d at %s flags %08x
\n
"
,
hwnd
,
data
?
data
->
cocoa_window
:
NULL
,
cmd
,
wine_dbgstr_rect
(
rect
),
swp
);
if
(
!
data
||
!
data
->
cocoa_window
)
goto
done
;
if
(
IsRectEmpty
(
rect
))
goto
done
;
if
(
GetWindowLongW
(
hwnd
,
GWL_STYLE
)
&
WS_MINIMIZE
)
...
...
@@ -1049,9 +1052,6 @@ UINT CDECL macdrv_ShowWindow(HWND hwnd, INT cmd, RECT *rect, UINT swp)
thread_data
->
current_event
->
type
!=
WINDOW_DID_UNMINIMIZE
)
goto
done
;
TRACE
(
"win %p/%p cmd %d at %s flags %08x
\n
"
,
hwnd
,
data
->
cocoa_window
,
cmd
,
wine_dbgstr_rect
(
rect
),
swp
);
macdrv_get_cocoa_window_frame
(
data
->
cocoa_window
,
&
frame
);
*
rect
=
rect_from_cgrect
(
frame
);
macdrv_mac_to_window_rect
(
data
,
rect
);
...
...
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