mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[NETCFGX] NetworkPropertySheetProvider: Fix property selection because the property list box is sorted.
CORE-15095
This commit is contained in:
parent
9b2a53e56b
commit
d58f6558e0
1 changed files with 6 additions and 3 deletions
|
@ -789,6 +789,7 @@ OnInitDialog(
|
|||
HWND hwndControl;
|
||||
PWSTR pszText;
|
||||
DWORD i;
|
||||
INT idx;
|
||||
|
||||
TRACE("OnInitDialog()\n");
|
||||
|
||||
|
@ -811,13 +812,15 @@ OnInitDialog(
|
|||
else
|
||||
pszText = pParamArray->Array[i].pszName;
|
||||
|
||||
ListBox_AddString(hwndControl, pszText);
|
||||
idx = ListBox_AddString(hwndControl, pszText);
|
||||
if (idx != LB_ERR)
|
||||
ListBox_SetItemData(hwndControl, idx, (LPARAM)&pParamArray->Array[i]);
|
||||
}
|
||||
|
||||
if (pParamArray->dwCount > 0)
|
||||
{
|
||||
ListBox_SetCurSel(hwndControl, 0);
|
||||
pParamArray->pCurrentParam = &pParamArray->Array[0];
|
||||
pParamArray->pCurrentParam = (PPARAMETER)ListBox_GetItemData(hwndControl, 0);
|
||||
DisplayParameter(hwnd, pParamArray->pCurrentParam);
|
||||
}
|
||||
}
|
||||
|
@ -855,7 +858,7 @@ OnCommand(
|
|||
iIndex = ListBox_GetCurSel((HWND)lParam);
|
||||
if (iIndex != LB_ERR && iIndex < pParamArray->dwCount)
|
||||
{
|
||||
pParamArray->pCurrentParam = &pParamArray->Array[iIndex];
|
||||
pParamArray->pCurrentParam = (PPARAMETER)ListBox_GetItemData((HWND)lParam, iIndex);
|
||||
DisplayParameter(hwnd, pParamArray->pCurrentParam);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue