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
27b7f259
Commit
27b7f259
authored
Mar 06, 2010
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Mar 15, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Removed unused parameters from FILEDLG95_OnWMSize,…
comdlg32: Removed unused parameters from FILEDLG95_OnWMSize, FILEDLG95_OnWMCommand, and FD32_WMMeasureItem.
parent
4b25c6e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
filedlg.c
dlls/comdlg32/filedlg.c
+7
-7
No files found.
dlls/comdlg32/filedlg.c
View file @
27b7f259
...
...
@@ -176,7 +176,7 @@ static SIZE MemDialogSize = { 0, 0}; /* keep size of the (resizable) dialog */
/* Internal functions used by the dialog */
static
LRESULT
FILEDLG95_ResizeControls
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
);
static
LRESULT
FILEDLG95_FillControls
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
);
static
LRESULT
FILEDLG95_OnWMCommand
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
);
static
LRESULT
FILEDLG95_OnWMCommand
(
HWND
hwnd
,
WPARAM
wParam
);
static
LRESULT
FILEDLG95_OnWMGetIShellBrowser
(
HWND
hwnd
);
static
BOOL
FILEDLG95_OnOpen
(
HWND
hwnd
);
static
LRESULT
FILEDLG95_InitControls
(
HWND
hwnd
);
...
...
@@ -991,7 +991,7 @@ static LRESULT FILEDLG95_OnWMGetMMI( HWND hwnd, LPMINMAXINFO mmiptr)
* vertically or horizontally to get out of the way. Only the "grip"
* is moved in both directions to stay in the corner.
*/
static
LRESULT
FILEDLG95_OnWMSize
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
FILEDLG95_OnWMSize
(
HWND
hwnd
,
WPARAM
wParam
)
{
RECT
rc
,
rcview
;
int
chgx
,
chgy
;
...
...
@@ -1223,11 +1223,11 @@ INT_PTR CALLBACK FileOpenDlgProc95(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM l
return
0
;
}
case
WM_SIZE
:
return
FILEDLG95_OnWMSize
(
hwnd
,
wParam
,
lParam
);
return
FILEDLG95_OnWMSize
(
hwnd
,
wParam
);
case
WM_GETMINMAXINFO
:
return
FILEDLG95_OnWMGetMMI
(
hwnd
,
(
LPMINMAXINFO
)
lParam
);
case
WM_COMMAND
:
return
FILEDLG95_OnWMCommand
(
hwnd
,
wParam
,
lParam
);
return
FILEDLG95_OnWMCommand
(
hwnd
,
wParam
);
case
WM_DRAWITEM
:
{
switch
(((
LPDRAWITEMSTRUCT
)
lParam
)
->
CtlID
)
...
...
@@ -1733,7 +1733,7 @@ void FILEDLG95_Clean(HWND hwnd)
*
* WM_COMMAND message handler
*/
static
LRESULT
FILEDLG95_OnWMCommand
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
FILEDLG95_OnWMCommand
(
HWND
hwnd
,
WPARAM
wParam
)
{
WORD
wNotifyCode
=
HIWORD
(
wParam
);
/* notification code */
WORD
wID
=
LOWORD
(
wParam
);
/* item, control, or accelerator identifier */
...
...
@@ -3799,7 +3799,7 @@ BOOL FD32_GetTemplate(PFD31_DATA lfs)
/***********************************************************************
* FD32_WMMeasureItem [internal]
*/
static
LONG
FD32_WMMeasureItem
(
HWND
hWnd
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LONG
FD32_WMMeasureItem
(
LPARAM
lParam
)
{
LPMEASUREITEMSTRUCT
lpmeasure
;
...
...
@@ -3832,7 +3832,7 @@ static INT_PTR CALLBACK FD32_FileOpenDlgProc(HWND hWnd, UINT wMsg,
return
FD31_WMInitDialog
(
hWnd
,
wParam
,
lParam
);
case
WM_MEASUREITEM
:
return
FD32_WMMeasureItem
(
hWnd
,
wParam
,
lParam
);
return
FD32_WMMeasureItem
(
lParam
);
case
WM_DRAWITEM
:
return
FD31_WMDrawItem
(
hWnd
,
wParam
,
lParam
,
!
lfs
->
open
,
(
DRAWITEMSTRUCT
*
)
lParam
);
...
...
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