spell checker

This commit is contained in:
donlaci
2024-06-13 13:31:06 +02:00
parent 8f69109689
commit 0bdfa32cd0
3 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ namespace Common.UI
EnvironmentVariables,
Dashboard,
AdvancedPaste,
Prjects,
Projects,
}
private static string SettingsWindowNameToString(SettingsWindow value)
@@ -78,7 +78,7 @@ namespace Common.UI
return "Dashboard";
case SettingsWindow.AdvancedPaste:
return "AdvancedPaste";
case SettingsWindow.Prjects:
case SettingsWindow.Projects:
return "Projects";
default:
{

View File

@@ -174,6 +174,6 @@ namespace winrt::PowerToys::GPOWrapper::implementation
}
GpoRuleConfigured GPOWrapper::GetConfiguredProjectsEnabledValue()
{
return static_cast<GpoRuleConfigured>(powertoys_gpo::getConfiguredProjeectsEnabledValue());
return static_cast<GpoRuleConfigured>(powertoys_gpo::getConfiguredProjectsEnabledValue());
}
}

View File

@@ -367,7 +367,7 @@ namespace powertoys_gpo {
return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_ADVANCED_PASTE);
}
inline gpo_rule_configured_t getConfiguredProjeectsEnabledValue()
inline gpo_rule_configured_t getConfiguredProjectsEnabledValue()
{
return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_PROJECTS);
}