shell32: Fix the IDS_PERSONAL hardcoded default.

The corresponding folder is called 'My Documents' but on Linux it's
usually called 'Documents' so that's much more appropriate fallback
than 'Personal'.
This commit is contained in:
Francois Gouget 2015-01-05 19:27:07 +01:00 committed by Alexandre Julliard
parent aa096fb456
commit d7fc48463b
1 changed files with 1 additions and 1 deletions

View File

@ -2573,7 +2573,7 @@ static inline BOOL _SHAppendToUnixPath(char *szBasePath, LPCWSTR pwszSubPath) {
/* Fall back to hard coded defaults. */
switch (LOWORD(pwszSubPath)) {
case IDS_PERSONAL:
lstrcpyW(wszSubPath, PersonalW);
lstrcpyW(wszSubPath, DocumentsW);
break;
case IDS_MYMUSIC:
lstrcpyW(wszSubPath, My_MusicW);