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
9e1278dd
Commit
9e1278dd
authored
Jul 12, 2017
by
Hugh McMaster
Committed by
Alexandre Julliard
Jul 12, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regedit: Remove the unused _CmdWndProc callback function from listview.c.
Signed-off-by:
Hugh McMaster
<
hugh.mcmaster@outlook.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c4a06a30
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
16 deletions
+0
-16
listview.c
programs/regedit/listview.c
+0
-16
No files found.
programs/regedit/listview.c
View file @
9e1278dd
...
...
@@ -362,25 +362,9 @@ HWND StartValueRename(HWND hwndLV)
return
(
HWND
)
SendMessageW
(
hwndLV
,
LVM_EDITLABELW
,
item
,
0
);
}
static
BOOL
_CmdWndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
switch
(
LOWORD
(
wParam
))
{
/* case ID_FILE_OPEN: */
/* break; */
default:
return
FALSE
;
}
return
TRUE
;
}
static
LRESULT
CALLBACK
ListWndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
switch
(
message
)
{
case
WM_COMMAND
:
if
(
!
_CmdWndProc
(
hWnd
,
message
,
wParam
,
lParam
))
{
return
CallWindowProcW
(
g_orgListWndProc
,
hWnd
,
message
,
wParam
,
lParam
);
}
break
;
case
WM_NOTIFY_REFLECT
:
switch
(((
LPNMHDR
)
lParam
)
->
code
)
{
...
...
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