Commit 1134834b authored by Michael Bond's avatar Michael Bond Committed by Alexandre Julliard

shell32/shellpath: Fix UserPinned and QuickLaunch KnownFolderPaths.

parent 12f73ed9
...@@ -1722,7 +1722,7 @@ static const CSIDL_DATA CSIDL_Data[] = ...@@ -1722,7 +1722,7 @@ static const CSIDL_DATA CSIDL_Data[] =
}, },
{ /* 0x4b */ { /* 0x4b */
.id = &FOLDERID_ImplicitAppShortcuts, .id = &FOLDERID_ImplicitAppShortcuts,
.type = CSIDL_Type_Disallowed, /* FIXME */ .type = CSIDL_Type_User,
.category = KF_CATEGORY_PERUSER, .category = KF_CATEGORY_PERUSER,
.name = L"ImplicitAppShortcuts", .name = L"ImplicitAppShortcuts",
.parent = &FOLDERID_UserPinned, .parent = &FOLDERID_UserPinned,
...@@ -1878,7 +1878,7 @@ static const CSIDL_DATA CSIDL_Data[] = ...@@ -1878,7 +1878,7 @@ static const CSIDL_DATA CSIDL_Data[] =
}, },
{ /* 0x5b */ { /* 0x5b */
.id = &FOLDERID_QuickLaunch, .id = &FOLDERID_QuickLaunch,
.type = CSIDL_Type_Disallowed, /* FIXME */ .type = CSIDL_Type_User,
.category = KF_CATEGORY_PERUSER, .category = KF_CATEGORY_PERUSER,
.name = L"Quick Launch", .name = L"Quick Launch",
.parent = &FOLDERID_RoamingAppData, .parent = &FOLDERID_RoamingAppData,
...@@ -2024,7 +2024,7 @@ static const CSIDL_DATA CSIDL_Data[] = ...@@ -2024,7 +2024,7 @@ static const CSIDL_DATA CSIDL_Data[] =
}, },
{ /* 0x6c */ { /* 0x6c */
.id = &FOLDERID_UserPinned, .id = &FOLDERID_UserPinned,
.type = CSIDL_Type_Disallowed, /* FIXME */ .type = CSIDL_Type_User,
.category = KF_CATEGORY_PERUSER, .category = KF_CATEGORY_PERUSER,
.name = L"User Pinned", .name = L"User Pinned",
.parent = &FOLDERID_QuickLaunch, .parent = &FOLDERID_QuickLaunch,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment