mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add missing using directives
This commit is contained in:
parent
5ae3262279
commit
4f4e423a4b
1 changed files with 5 additions and 3 deletions
|
|
@ -1,4 +1,6 @@
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
|
|
@ -30,9 +32,9 @@ namespace Wox.Plugin.Caculator
|
||||||
|
|
||||||
static Main()
|
static Main()
|
||||||
{
|
{
|
||||||
MagesEngine = new Engine();
|
MagesEngine = new Engine();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Init(PluginInitContext context)
|
public void Init(PluginInitContext context)
|
||||||
{
|
{
|
||||||
Context = context;
|
Context = context;
|
||||||
|
|
@ -147,7 +149,7 @@ namespace Wox.Plugin.Caculator
|
||||||
|
|
||||||
return leftBracketCount == 0;
|
return leftBracketCount == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string GetTranslatedPluginTitle()
|
public string GetTranslatedPluginTitle()
|
||||||
{
|
{
|
||||||
return Context.API.GetTranslation("wox_plugin_caculator_plugin_name");
|
return Context.API.GetTranslation("wox_plugin_caculator_plugin_name");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue