mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
Merge pull request #514 from staff0rd/websearchsetting_spelling
Fix spelling
This commit is contained in:
@@ -17,11 +17,11 @@ namespace Wox.Plugin.WebSearch
|
||||
private bool _isUpdate;
|
||||
private WebSearch _updateWebSearch;
|
||||
private readonly PluginInitContext _context;
|
||||
private readonly WebSearchPlugin _plguin;
|
||||
private readonly WebSearchPlugin _plugin;
|
||||
|
||||
public WebSearchSetting(WebSearchesSetting settingWidow)
|
||||
{
|
||||
_plguin = settingWidow.Plugin;
|
||||
_plugin = settingWidow.Plugin;
|
||||
_context = settingWidow.Context;
|
||||
_settingWindow = settingWidow;
|
||||
InitializeComponent();
|
||||
@@ -85,7 +85,7 @@ namespace Wox.Plugin.WebSearch
|
||||
{
|
||||
try
|
||||
{
|
||||
_plguin.NotifyActionKeywordsUpdated(_updateWebSearch.ActionKeyword, newActionKeyword);
|
||||
_plugin.NotifyActionKeywordsUpdated(_updateWebSearch.ActionKeyword, newActionKeyword);
|
||||
}
|
||||
catch (WoxPluginException exception)
|
||||
{
|
||||
@@ -103,7 +103,7 @@ namespace Wox.Plugin.WebSearch
|
||||
{
|
||||
try
|
||||
{
|
||||
_plguin.NotifyActionKeywordsAdded(newActionKeyword);
|
||||
_plugin.NotifyActionKeywordsAdded(newActionKeyword);
|
||||
}
|
||||
catch (WoxPluginException exception)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user