mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
- set check when theres a timeout
svn path=/trunk/; revision=28439
This commit is contained in:
parent
7f430604fd
commit
12fb19e113
1 changed files with 8 additions and 0 deletions
|
@ -246,6 +246,10 @@ int LoadFreeldrSettings(HINF hInf, HWND hwndDlg)
|
|||
SendDlgItemMessage(hwndDlg, IDC_STRECOSCOMBO, CB_SETCURSEL, (WPARAM)lResult, (LPARAM)0);
|
||||
}
|
||||
|
||||
if(TimeOut)
|
||||
{
|
||||
SendDlgItemMessage(hwndDlg, IDC_STRECLIST, BM_SETCHECK, (WPARAM)BST_CHECKED, (LPARAM)0);
|
||||
}
|
||||
SetTimeout(hwndDlg, TimeOut);
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -370,6 +374,10 @@ int LoadBootSettings(HINF hInf, HWND hwndDlg)
|
|||
/* set cur sel */
|
||||
SendDlgItemMessage(hwndDlg, IDC_STRECOSCOMBO, CB_SETCURSEL, (WPARAM)lResult, (LPARAM)0);
|
||||
}
|
||||
if(TimeOut)
|
||||
{
|
||||
SendDlgItemMessage(hwndDlg, IDC_STRECLIST, BM_SETCHECK, (WPARAM)BST_CHECKED, (LPARAM)0);
|
||||
}
|
||||
|
||||
SetTimeout(hwndDlg, TimeOut);
|
||||
return TRUE;
|
||||
|
|
Loading…
Reference in a new issue