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
58441052
Commit
58441052
authored
Sep 22, 2012
by
Ken Thomases
Committed by
Alexandre Julliard
Sep 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Avoid a redundant TRACE.
parent
efb08f26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
event.c
dlls/winex11.drv/event.c
+9
-6
No files found.
dlls/winex11.drv/event.c
View file @
58441052
...
...
@@ -1209,14 +1209,17 @@ static void handle_wm_state_notify( HWND hwnd, XPropertyEvent *event, BOOL updat
}
TRACE
(
"not restoring to max win %p/%lx style %08x
\n
"
,
data
->
hwnd
,
data
->
whole_window
,
style
);
}
else
if
(
style
&
(
WS_MINIMIZE
|
WS_MAXIMIZE
))
else
{
TRACE
(
"restoring win %p/%lx
\n
"
,
data
->
hwnd
,
data
->
whole_window
);
release_win_data
(
data
);
SendMessageW
(
hwnd
,
WM_SYSCOMMAND
,
SC_RESTORE
,
0
);
return
;
if
(
style
&
(
WS_MINIMIZE
|
WS_MAXIMIZE
))
{
TRACE
(
"restoring win %p/%lx
\n
"
,
data
->
hwnd
,
data
->
whole_window
);
release_win_data
(
data
);
SendMessageW
(
hwnd
,
WM_SYSCOMMAND
,
SC_RESTORE
,
0
);
return
;
}
TRACE
(
"not restoring win %p/%lx style %08x
\n
"
,
data
->
hwnd
,
data
->
whole_window
,
style
);
}
TRACE
(
"not restoring win %p/%lx style %08x
\n
"
,
data
->
hwnd
,
data
->
whole_window
,
style
);
}
else
if
(
!
data
->
iconic
&&
data
->
wm_state
==
IconicState
)
{
...
...
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