mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #28139: Merge indentation fixes from 3.5 into 3.6
This commit is contained in:
commit
d508d00919
7 changed files with 38 additions and 32 deletions
|
@ -1661,16 +1661,16 @@ SelectPythonDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|||
PropSheet_SetWizButtons(GetParent(hwnd),
|
||||
PSWIZB_BACK | PSWIZB_NEXT);
|
||||
/* Get the python directory */
|
||||
ivi = (InstalledVersionInfo *)
|
||||
ivi = (InstalledVersionInfo *)
|
||||
SendDlgItemMessage(hwnd,
|
||||
IDC_VERSIONS_LIST,
|
||||
LB_GETITEMDATA,
|
||||
id,
|
||||
0);
|
||||
hkey_root = ivi->hkey;
|
||||
strcpy(python_dir, ivi->prefix);
|
||||
SetDlgItemText(hwnd, IDC_PATH, python_dir);
|
||||
/* retrieve the python version and pythondll to use */
|
||||
IDC_VERSIONS_LIST,
|
||||
LB_GETITEMDATA,
|
||||
id,
|
||||
0);
|
||||
hkey_root = ivi->hkey;
|
||||
strcpy(python_dir, ivi->prefix);
|
||||
SetDlgItemText(hwnd, IDC_PATH, python_dir);
|
||||
/* retrieve the python version and pythondll to use */
|
||||
result = SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST,
|
||||
LB_GETTEXTLEN, (WPARAM)id, 0);
|
||||
pbuf = (char *)malloc(result + 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue