mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +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 bool _isUpdate;
|
||||||
private WebSearch _updateWebSearch;
|
private WebSearch _updateWebSearch;
|
||||||
private readonly PluginInitContext _context;
|
private readonly PluginInitContext _context;
|
||||||
private readonly WebSearchPlugin _plguin;
|
private readonly WebSearchPlugin _plugin;
|
||||||
|
|
||||||
public WebSearchSetting(WebSearchesSetting settingWidow)
|
public WebSearchSetting(WebSearchesSetting settingWidow)
|
||||||
{
|
{
|
||||||
_plguin = settingWidow.Plugin;
|
_plugin = settingWidow.Plugin;
|
||||||
_context = settingWidow.Context;
|
_context = settingWidow.Context;
|
||||||
_settingWindow = settingWidow;
|
_settingWindow = settingWidow;
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
@@ -85,7 +85,7 @@ namespace Wox.Plugin.WebSearch
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
_plguin.NotifyActionKeywordsUpdated(_updateWebSearch.ActionKeyword, newActionKeyword);
|
_plugin.NotifyActionKeywordsUpdated(_updateWebSearch.ActionKeyword, newActionKeyword);
|
||||||
}
|
}
|
||||||
catch (WoxPluginException exception)
|
catch (WoxPluginException exception)
|
||||||
{
|
{
|
||||||
@@ -103,7 +103,7 @@ namespace Wox.Plugin.WebSearch
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
_plguin.NotifyActionKeywordsAdded(newActionKeyword);
|
_plugin.NotifyActionKeywordsAdded(newActionKeyword);
|
||||||
}
|
}
|
||||||
catch (WoxPluginException exception)
|
catch (WoxPluginException exception)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user