mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
more gcc 4.1 fixes
svn path=/trunk/; revision=22161
This commit is contained in:
parent
2c1f99e2c2
commit
21d8349b92
1 changed files with 4 additions and 4 deletions
|
@ -332,8 +332,8 @@ UpdatePrefDlgControls(PPREFERENCES_CONTEXT Context,
|
|||
{
|
||||
Context->SelectedLine = LineID;
|
||||
|
||||
ListView_DeleteAllItems(GetDlgItem(Context->hwndDlg,
|
||||
IDC_CONTROLS));
|
||||
(void)ListView_DeleteAllItems(GetDlgItem(Context->hwndDlg,
|
||||
IDC_CONTROLS));
|
||||
|
||||
Context->tmp = 0;
|
||||
SndMixerEnumConnections(Context->Mixer,
|
||||
|
@ -497,8 +497,8 @@ DlgPreferencesProc(HWND hwndDlg,
|
|||
/* initialize the list view control */
|
||||
hwndControls = GetDlgItem(hwndDlg,
|
||||
IDC_CONTROLS);
|
||||
ListView_SetExtendedListViewStyle(hwndControls,
|
||||
LVS_EX_CHECKBOXES);
|
||||
(void)ListView_SetExtendedListViewStyle(hwndControls,
|
||||
LVS_EX_CHECKBOXES);
|
||||
|
||||
GetClientRect(hwndControls,
|
||||
&rcClient);
|
||||
|
|
Loading…
Reference in a new issue