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
2bd62004
Commit
2bd62004
authored
Apr 06, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Remove inappropriate const qualifier.
parent
03fc0989
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
filedlg31.c
dlls/comdlg32/filedlg31.c
+1
-1
filedlg31.h
dlls/comdlg32/filedlg31.h
+1
-1
No files found.
dlls/comdlg32/filedlg31.c
View file @
2bd62004
...
...
@@ -754,7 +754,7 @@ void FD31_MapOfnStructA(const OPENFILENAMEA *ofnA, LPOPENFILENAMEW ofnW, BOOL op
* FD31_FreeOfnW [internal]
* Undo all allocations done by FD31_MapOfnStructA
*/
void
FD31_FreeOfnW
(
const
OPENFILENAMEW
*
ofnW
)
void
FD31_FreeOfnW
(
OPENFILENAMEW
*
ofnW
)
{
HeapFree
(
GetProcessHeap
(),
0
,
(
LPWSTR
)
ofnW
->
lpstrFilter
);
HeapFree
(
GetProcessHeap
(),
0
,
ofnW
->
lpstrCustomFilter
);
...
...
dlls/comdlg32/filedlg31.h
View file @
2bd62004
...
...
@@ -55,7 +55,7 @@ extern PFD31_DATA FD31_AllocPrivate(LPARAM lParam, UINT dlgType,
PFD31_CALLBACKS
callbacks
,
DWORD
data
);
extern
void
FD31_DestroyPrivate
(
PFD31_DATA
lfs
);
extern
void
FD31_MapOfnStructA
(
const
OPENFILENAMEA
*
ofnA
,
LPOPENFILENAMEW
ofnW
,
BOOL
open
);
extern
void
FD31_FreeOfnW
(
const
OPENFILENAMEW
*
ofnW
);
extern
void
FD31_FreeOfnW
(
OPENFILENAMEW
*
ofnW
);
extern
BOOL
FD31_CallWindowProc
(
const
FD31_DATA
*
lfs
,
UINT
wMsg
,
WPARAM
wParam
,
LPARAM
lParam
);
extern
LONG
FD31_WMInitDialog
(
HWND
hWnd
,
WPARAM
wParam
,
LPARAM
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