Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
6f36945f
Commit
6f36945f
authored
Dec 27, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Remove some superfluous LPARAM/WPARAM casts.
parent
9c15472a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
brsfolder.c
dlls/shell32/brsfolder.c
+1
-1
changenotify.c
dlls/shell32/changenotify.c
+1
-1
shell32_main.c
dlls/shell32/shell32_main.c
+1
-1
shlview.c
dlls/shell32/shlview.c
+1
-1
No files found.
dlls/shell32/brsfolder.c
View file @
6f36945f
...
...
@@ -490,7 +490,7 @@ static void BrsFolder_CheckValidSelection( browse_info *info, LPTV_ITEMDATA lptv
bEnabled
=
FALSE
;
}
}
SendMessageW
(
info
->
hWnd
,
BFFM_ENABLEOK
,
0
,
(
LPARAM
)
bEnabled
);
SendMessageW
(
info
->
hWnd
,
BFFM_ENABLEOK
,
0
,
bEnabled
);
}
static
LRESULT
BrsFolder_Treeview_Delete
(
browse_info
*
info
,
NMTREEVIEWW
*
pnmtv
)
...
...
dlls/shell32/changenotify.c
View file @
6f36945f
...
...
@@ -387,7 +387,7 @@ void WINAPI SHChangeNotify(LONG wEventId, UINT uFlags, LPCVOID dwItem1, LPCVOID
ptr
->
wSignalledEvent
|=
wEventId
;
if
(
ptr
->
dwFlags
&
SHCNRF_NewDelivery
)
SendMessageA
(
ptr
->
hwnd
,
ptr
->
uMsg
,
(
WPARAM
)
ptr
,
(
LPARAM
)
GetCurrentProcessId
());
SendMessageA
(
ptr
->
hwnd
,
ptr
->
uMsg
,
(
WPARAM
)
ptr
,
GetCurrentProcessId
());
else
SendMessageA
(
ptr
->
hwnd
,
ptr
->
uMsg
,
(
WPARAM
)
Pidls
,
wEventId
);
...
...
dlls/shell32/shell32_main.c
View file @
6f36945f
...
...
@@ -956,7 +956,7 @@ static INT_PTR CALLBACK AboutDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
{
/* authors list is in utf-8 format */
MultiByteToWideChar
(
CP_UTF8
,
0
,
*
pstr
,
-
1
,
buffer
,
sizeof
(
buffer
)
/
sizeof
(
WCHAR
)
);
SendMessageW
(
hWndCtl
,
LB_ADDSTRING
,
(
WPARAM
)
-
1
,
(
LPARAM
)
buffer
);
SendMessageW
(
hWndCtl
,
LB_ADDSTRING
,
-
1
,
(
LPARAM
)
buffer
);
pstr
++
;
}
SendMessageW
(
hWndCtl
,
WM_SETREDRAW
,
1
,
0
);
...
...
dlls/shell32/shlview.c
View file @
6f36945f
...
...
@@ -1262,7 +1262,7 @@ static LRESULT ShellView_OnCommand(IShellViewImpl * This,DWORD dwCmdID, DWORD dw
case
0x31
:
case
0x32
:
case
0x33
:
This
->
ListViewSortInfo
.
nHeaderID
=
(
LPARAM
)
(
dwCmdID
-
0x30
)
;
This
->
ListViewSortInfo
.
nHeaderID
=
dwCmdID
-
0x30
;
This
->
ListViewSortInfo
.
bIsAscending
=
TRUE
;
This
->
ListViewSortInfo
.
nLastHeaderID
=
This
->
ListViewSortInfo
.
nHeaderID
;
SendMessageA
(
This
->
hWndList
,
LVM_SORTITEMS
,
(
WPARAM
)
&
This
->
ListViewSortInfo
,
(
LPARAM
)
ShellView_ListViewCompareItems
);
...
...
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