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
635bb110
Commit
635bb110
authored
Jan 14, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jan 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Fix the typos in the fullscreen state debug trace.
parent
5ddac44d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
winpos.c
dlls/winex11.drv/winpos.c
+4
-3
No files found.
dlls/winex11.drv/winpos.c
View file @
635bb110
...
...
@@ -190,7 +190,7 @@ static void update_fullscreen_state( Display *display, Window win, BOOL new_fs_s
{
XEvent
xev
;
TRACE
(
"setting fullscreen state for window %l
d
to %s
\n
"
,
win
,
new_fs_state
?
"true"
:
"false"
);
TRACE
(
"setting fullscreen state for window %l
x
to %s
\n
"
,
win
,
new_fs_state
?
"true"
:
"false"
);
xev
.
xclient
.
type
=
ClientMessage
;
xev
.
xclient
.
window
=
win
;
...
...
@@ -229,10 +229,11 @@ static BOOL fullscreen_state_changed( const struct x11drv_win_data *data,
*
new_fs_state
=
TRUE
;
#if 0 /* useful to debug fullscreen state problems */
TRACE("old rect %s, new rect %s, old screen %s, new screen (0,0-%d,%d)\n",
TRACE("hwnd %p, old rect %s, new rect %s, old screen %s, new screen (0,0-%d,%d)\n",
data->hwnd,
wine_dbgstr_rect(old_client_rect), wine_dbgstr_rect(&data->client_rect),
wine_dbgstr_rect(old_screen_rect), screen_width, screen_height);
TRACE("old fs state %d\n, new fs state = %d\n", old_fs_state, new_fs_state);
TRACE("old fs state %d\n, new fs state = %d\n", old_fs_state,
*
new_fs_state);
#endif
return
*
new_fs_state
!=
old_fs_state
;
}
...
...
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