Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
9cef7014
Commit
9cef7014
authored
Apr 02, 2016
by
Michael Müller
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Recognize cut/copy/paste string verbs in item menu context menu.
parent
96a9e549
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
shlview_cmenu.c
dlls/shell32/shlview_cmenu.c
+6
-0
No files found.
dlls/shell32/shlview_cmenu.c
View file @
9cef7014
...
...
@@ -1293,6 +1293,12 @@ static HRESULT WINAPI ItemMenu_InvokeCommand(
DoCopyOrCut
(
This
,
lpcmi
->
hwnd
,
TRUE
);
else
if
(
strcmp
(
lpcmi
->
lpVerb
,
"properties"
)
==
0
)
DoOpenProperties
(
This
,
lpcmi
->
hwnd
);
else
if
(
strcmp
(
lpcmi
->
lpVerb
,
"cut"
)
==
0
)
DoCopyOrCut
(
This
,
lpcmi
->
hwnd
,
TRUE
);
else
if
(
strcmp
(
lpcmi
->
lpVerb
,
"copy"
)
==
0
)
DoCopyOrCut
(
This
,
lpcmi
->
hwnd
,
FALSE
);
else
if
(
strcmp
(
lpcmi
->
lpVerb
,
"paste"
)
==
0
)
DoPaste
(
This
);
else
{
FIXME
(
"Unhandled string verb %s
\n
"
,
debugstr_a
(
lpcmi
->
lpVerb
));
return
E_FAIL
;
...
...
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