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
1e04e923
Commit
1e04e923
authored
Oct 12, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Use the correct resource ids for the drag&drop cursors.
parent
95455880
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
ole2.c
dlls/ole32/ole2.c
+4
-4
ole32res.rc
dlls/ole32/ole32res.rc
+4
-4
No files found.
dlls/ole32/ole2.c
View file @
1e04e923
...
...
@@ -2224,19 +2224,19 @@ static void OLEDD_TrackMouseMove(TrackerWindowInfo* trackerInfo)
if
(
*
trackerInfo
->
pdwEffect
&
DROPEFFECT_MOVE
)
{
hCur
=
LoadCursorW
(
hProxyDll
,
MAKEINTRESOURCEW
(
1
));
hCur
=
LoadCursorW
(
hProxyDll
,
MAKEINTRESOURCEW
(
2
));
}
else
if
(
*
trackerInfo
->
pdwEffect
&
DROPEFFECT_COPY
)
{
hCur
=
LoadCursorW
(
hProxyDll
,
MAKEINTRESOURCEW
(
2
));
hCur
=
LoadCursorW
(
hProxyDll
,
MAKEINTRESOURCEW
(
3
));
}
else
if
(
*
trackerInfo
->
pdwEffect
&
DROPEFFECT_LINK
)
{
hCur
=
LoadCursorW
(
hProxyDll
,
MAKEINTRESOURCEW
(
3
));
hCur
=
LoadCursorW
(
hProxyDll
,
MAKEINTRESOURCEW
(
4
));
}
else
{
hCur
=
LoadCursorW
(
hProxyDll
,
MAKEINTRESOURCEW
(
0
));
hCur
=
LoadCursorW
(
hProxyDll
,
MAKEINTRESOURCEW
(
1
));
}
SetCursor
(
hCur
);
...
...
dlls/ole32/ole32res.rc
View file @
1e04e923
...
...
@@ -37,13 +37,13 @@
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
/* @makedep: nodrop.cur */
0
CURSOR nodrop.cur
1
CURSOR nodrop.cur
/* @makedep: drag_move.cur */
1
CURSOR drag_move.cur
2
CURSOR drag_move.cur
/* @makedep: drag_copy.cur */
2
CURSOR drag_copy.cur
3
CURSOR drag_copy.cur
/* @makedep: drag_link.cur */
3
CURSOR drag_link.cur
4
CURSOR drag_link.cur
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