mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
spell checker
This commit is contained in:
@@ -31,7 +31,7 @@ namespace ProjectsLauncherUI.Data
|
||||
[JsonPropertyName("apps")]
|
||||
public AppLaunchInfoListWrapper AppLaunchInfos { get; set; }
|
||||
|
||||
[JsonPropertyName("processid")]
|
||||
[JsonPropertyName("processId")]
|
||||
public int LauncherProcessID { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ namespace ProjectsLauncherUI.Data
|
||||
{
|
||||
public struct AppLaunchInfoListWrapper
|
||||
{
|
||||
[JsonPropertyName("applaunchinfos")]
|
||||
[JsonPropertyName("appLaunchInfos")]
|
||||
public List<AppLaunchInfoWrapper> AppLaunchInfoList { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -432,7 +432,7 @@ namespace ProjectsData
|
||||
{
|
||||
namespace NonLocalizable
|
||||
{
|
||||
const static wchar_t* AppLaunchInfoID = L"applaunchinfos";
|
||||
const static wchar_t* AppLaunchInfoID = L"appLaunchInfos";
|
||||
}
|
||||
|
||||
json::JsonObject ToJson(const std::vector<AppLaunchInfo>& data)
|
||||
@@ -454,7 +454,7 @@ namespace ProjectsData
|
||||
namespace NonLocalizable
|
||||
{
|
||||
const static wchar_t* AppsID = L"apps";
|
||||
const static wchar_t* ProcessID = L"processid";
|
||||
const static wchar_t* ProcessID = L"processId";
|
||||
}
|
||||
|
||||
json::JsonObject ToJson(const AppLaunchData& data)
|
||||
|
||||
Reference in New Issue
Block a user