mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +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;
|
Context->SelectedLine = LineID;
|
||||||
|
|
||||||
ListView_DeleteAllItems(GetDlgItem(Context->hwndDlg,
|
(void)ListView_DeleteAllItems(GetDlgItem(Context->hwndDlg,
|
||||||
IDC_CONTROLS));
|
IDC_CONTROLS));
|
||||||
|
|
||||||
Context->tmp = 0;
|
Context->tmp = 0;
|
||||||
SndMixerEnumConnections(Context->Mixer,
|
SndMixerEnumConnections(Context->Mixer,
|
||||||
|
@ -497,8 +497,8 @@ DlgPreferencesProc(HWND hwndDlg,
|
||||||
/* initialize the list view control */
|
/* initialize the list view control */
|
||||||
hwndControls = GetDlgItem(hwndDlg,
|
hwndControls = GetDlgItem(hwndDlg,
|
||||||
IDC_CONTROLS);
|
IDC_CONTROLS);
|
||||||
ListView_SetExtendedListViewStyle(hwndControls,
|
(void)ListView_SetExtendedListViewStyle(hwndControls,
|
||||||
LVS_EX_CHECKBOXES);
|
LVS_EX_CHECKBOXES);
|
||||||
|
|
||||||
GetClientRect(hwndControls,
|
GetClientRect(hwndControls,
|
||||||
&rcClient);
|
&rcClient);
|
||||||
|
|
Loading…
Reference in a new issue