Module: wine Branch: master Commit: 1134834b7478632da9c60f36d4a7cf254729242c URL: https://gitlab.winehq.org/wine/wine/-/commit/1134834b7478632da9c60f36d4a7cf2...
Author: Michael Bond michael.bond@posteo.de Date: Mon Apr 22 16:05:28 2024 +1000
shell32/shellpath: Fix UserPinned and QuickLaunch KnownFolderPaths.
---
dlls/shell32/shellpath.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index e32bf5a50dc..7fbded5743b 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -1722,7 +1722,7 @@ static const CSIDL_DATA CSIDL_Data[] = }, { /* 0x4b */ .id = &FOLDERID_ImplicitAppShortcuts, - .type = CSIDL_Type_Disallowed, /* FIXME */ + .type = CSIDL_Type_User, .category = KF_CATEGORY_PERUSER, .name = L"ImplicitAppShortcuts", .parent = &FOLDERID_UserPinned, @@ -1878,7 +1878,7 @@ static const CSIDL_DATA CSIDL_Data[] = }, { /* 0x5b */ .id = &FOLDERID_QuickLaunch, - .type = CSIDL_Type_Disallowed, /* FIXME */ + .type = CSIDL_Type_User, .category = KF_CATEGORY_PERUSER, .name = L"Quick Launch", .parent = &FOLDERID_RoamingAppData, @@ -2024,7 +2024,7 @@ static const CSIDL_DATA CSIDL_Data[] = }, { /* 0x6c */ .id = &FOLDERID_UserPinned, - .type = CSIDL_Type_Disallowed, /* FIXME */ + .type = CSIDL_Type_User, .category = KF_CATEGORY_PERUSER, .name = L"User Pinned", .parent = &FOLDERID_QuickLaunch,