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
503563c9
Commit
503563c9
authored
Mar 26, 2010
by
Mikhail Maroukhine
Committed by
Alexandre Julliard
Mar 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
appwiz.cpl: Fix compiler warnings with flag -Wcast-qual.
parent
04901317
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
appwiz.c
dlls/appwiz.cpl/appwiz.c
+7
-7
No files found.
dlls/appwiz.cpl/appwiz.c
View file @
503563c9
...
...
@@ -556,7 +556,7 @@ static void UninstallProgram(int id, DWORD button)
* hWnd - handle of dialog box
* iDlgItem - ID of label in dialog box
*/
static
void
SetInfoDialogText
(
HKEY
hKey
,
LP
WSTR
lpKeyName
,
LP
WSTR
lpAltMessage
,
static
void
SetInfoDialogText
(
HKEY
hKey
,
LP
CWSTR
lpKeyName
,
LPC
WSTR
lpAltMessage
,
HWND
hWnd
,
int
iDlgItem
)
{
WCHAR
buf
[
MAX_STRING_LEN
];
...
...
@@ -628,17 +628,17 @@ static BOOL CALLBACK SupportInfoDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPAR
IDC_INFO_VERSION
);
/* And now update the data for those items in the registry */
SetInfoDialogText
(
hkey
,
(
LPWSTR
)
ContactW
,
notfound
,
hWnd
,
SetInfoDialogText
(
hkey
,
ContactW
,
notfound
,
hWnd
,
IDC_INFO_CONTACT
);
SetInfoDialogText
(
hkey
,
(
LPWSTR
)
HelpLinkW
,
notfound
,
hWnd
,
SetInfoDialogText
(
hkey
,
HelpLinkW
,
notfound
,
hWnd
,
IDC_INFO_SUPPORT
);
SetInfoDialogText
(
hkey
,
(
LPWSTR
)
HelpTelephoneW
,
notfound
,
hWnd
,
SetInfoDialogText
(
hkey
,
HelpTelephoneW
,
notfound
,
hWnd
,
IDC_INFO_PHONE
);
SetInfoDialogText
(
hkey
,
(
LPWSTR
)
ReadmeW
,
notfound
,
hWnd
,
SetInfoDialogText
(
hkey
,
ReadmeW
,
notfound
,
hWnd
,
IDC_INFO_README
);
SetInfoDialogText
(
hkey
,
(
LPWSTR
)
URLUpdateInfoW
,
notfound
,
hWnd
,
SetInfoDialogText
(
hkey
,
URLUpdateInfoW
,
notfound
,
hWnd
,
IDC_INFO_UPDATES
);
SetInfoDialogText
(
hkey
,
(
LPWSTR
)
CommentsW
,
notfound
,
hWnd
,
SetInfoDialogText
(
hkey
,
CommentsW
,
notfound
,
hWnd
,
IDC_INFO_COMMENTS
);
/* Update the main label with the app name */
...
...
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