mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #514 from staff0rd/websearchsetting_spelling
Fix spelling
This commit is contained in:
commit
4b4a414259
1 changed files with 4 additions and 4 deletions
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue