user32: DlgDirList converts path specification to uppercase.

This commit is contained in:
Alex Villacís Lasso 2007-11-14 14:17:46 -05:00 committed by Alexandre Julliard
parent 33abd94d35
commit bee9fbfd43
1 changed files with 3 additions and 0 deletions

View File

@ -1793,6 +1793,9 @@ static INT DIALOG_DlgDirListW( HWND hDlg, LPWSTR spec, INT idLBox,
}
}
/* Convert path specification to uppercase */
if (spec) CharUpperW(spec);
if (idStatic && ((hwnd = GetDlgItem( hDlg, idStatic )) != 0))
{
WCHAR temp[MAX_PATH];