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
22b7fedf
Commit
22b7fedf
authored
Oct 05, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Fix incorrect use of the ScreenToClient function.
parent
1019c2fe
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
shlfileop.c
dlls/shell32/shlfileop.c
+3
-5
No files found.
dlls/shell32/shlfileop.c
View file @
22b7fedf
...
@@ -94,15 +94,13 @@ static void confirm_msg_move_button(HWND hDlg, INT iId, INT *xPos, INT yOffset,
...
@@ -94,15 +94,13 @@ static void confirm_msg_move_button(HWND hDlg, INT iId, INT *xPos, INT yOffset,
RECT
r
;
RECT
r
;
if
(
bShow
)
{
if
(
bShow
)
{
POINT
pt
;
int
width
;
int
width
;
GetWindowRect
(
hButton
,
&
r
);
GetWindowRect
(
hButton
,
&
r
);
MapWindowPoints
(
0
,
hDlg
,
(
POINT
*
)
&
r
,
2
);
width
=
r
.
right
-
r
.
left
;
width
=
r
.
right
-
r
.
left
;
pt
.
x
=
r
.
left
;
SetWindowPos
(
hButton
,
0
,
*
xPos
-
width
,
r
.
top
-
yOffset
,
0
,
0
,
pt
.
y
=
r
.
top
;
SWP_NOSIZE
|
SWP_NOZORDER
|
SWP_NOACTIVATE
|
SWP_NOREDRAW
);
ScreenToClient
(
hDlg
,
&
pt
);
MoveWindow
(
hButton
,
*
xPos
-
width
,
pt
.
y
-
yOffset
,
width
,
r
.
bottom
-
r
.
top
,
FALSE
);
*
xPos
-=
width
+
5
;
*
xPos
-=
width
+
5
;
}
}
else
else
...
...
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