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
81538ebb
Commit
81538ebb
authored
Jul 06, 2016
by
Hadrien Boizard
Committed by
Alexandre Julliard
Jul 07, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Use wine_dbgstr_point in TRACES.
Signed-off-by:
Hadrien Boizard
<
h.boizard@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
648cbf63
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mouse.c
dlls/winex11.drv/mouse.c
+2
-2
No files found.
dlls/winex11.drv/mouse.c
View file @
81538ebb
...
...
@@ -1388,7 +1388,7 @@ BOOL CDECL X11DRV_GetCursorPos(LPPOINT pos)
{
POINT
old
=
*
pos
;
*
pos
=
root_to_virtual_screen
(
winX
,
winY
);
TRACE
(
"pointer at
(%d,%d) server pos %d,%d
\n
"
,
pos
->
x
,
pos
->
y
,
old
.
x
,
old
.
y
);
TRACE
(
"pointer at
%s server pos %s
\n
"
,
wine_dbgstr_point
(
pos
),
wine_dbgstr_point
(
&
old
)
);
}
return
ret
;
}
...
...
@@ -1458,7 +1458,7 @@ void move_resize_window( HWND hwnd, int dir )
else
if
(
GetKeyState
(
VK_MBUTTON
)
&
0x8000
)
button
=
2
;
else
if
(
GetKeyState
(
VK_RBUTTON
)
&
0x8000
)
button
=
3
;
TRACE
(
"hwnd %p/%lx,
x %d, y %d, dir %d, button %d
\n
"
,
hwnd
,
win
,
pos
.
x
,
pos
.
y
,
dir
,
button
);
TRACE
(
"hwnd %p/%lx,
pos %s, dir %d, button %d
\n
"
,
hwnd
,
win
,
wine_dbgstr_point
(
&
pos
)
,
dir
,
button
);
xev
.
xclient
.
type
=
ClientMessage
;
xev
.
xclient
.
window
=
win
;
...
...
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