Author: akhaldi Date: Tue Apr 21 11:43:15 2015 New Revision: 67336
URL: http://svn.reactos.org/svn/reactos?rev=67336&view=rev Log: [SHELL32] Add missing colon in window title bar when formatting a disk. By Radek Liska. CORE-9531
Modified: trunk/reactos/dll/win32/shell32/dialogs/drive.cpp
Modified: trunk/reactos/dll/win32/shell32/dialogs/drive.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/dialogs/d... ============================================================================== --- trunk/reactos/dll/win32/shell32/dialogs/drive.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/dialogs/drive.cpp [iso-8859-1] Tue Apr 21 11:43:15 2015 @@ -316,7 +316,7 @@ } }
- 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);