[SHELL32] Add missing colon in window title bar when formatting a disk. By Radek Liska. CORE-9531

svn path=/trunk/; revision=67336
This commit is contained in:
Amine Khaldi 2015-04-21 11:43:15 +00:00
parent 305e1f4c19
commit f14e04fb66

View file

@ -316,7 +316,7 @@ InitializeFormatDriveDlg(HWND hwndDlg, PFORMAT_DRIVE_CONTEXT pContext)
}
}
StringCchPrintfW(szText + cchText, _countof(szText) - cchText, L" (%c)", szDrive[0]);
StringCchPrintfW(szText + cchText, _countof(szText) - cchText, L" (%c:)", szDrive[0]);
/* set window text */
SetWindowTextW(hwndDlg, szText);