gloablHotkey -> GlobalHotkey

This commit is contained in:
Roy van Kaathoven
2014-03-18 17:26:09 +01:00
parent b402bd6c0e
commit f9ffa9c387
5 changed files with 98 additions and 92 deletions

View File

@@ -41,7 +41,7 @@ namespace Wox
Key key = (e.Key == Key.System ? e.SystemKey : e.Key);
string text = string.Empty;
SpecialKeyState specialKeyState = new GloablHotkey().CheckModifiers();
SpecialKeyState specialKeyState = new GlobalHotkey().CheckModifiers();
if (specialKeyState.AltPressed)
{
text += "Alt";

View File

@@ -35,7 +35,7 @@ namespace Wox
public static bool initialized = false;
private static readonly List<Result> waitShowResultList = new List<Result>();
private readonly GloablHotkey globalHotkey = new GloablHotkey();
private readonly GlobalHotkey globalHotkey = new GlobalHotkey();
private readonly KeyboardSimulator keyboardSimulator = new KeyboardSimulator(new InputSimulator());
private readonly Storyboard progressBarStoryboard = new Storyboard();
private bool WinRStroked;
@@ -349,7 +349,7 @@ namespace Wox
{
bool hideWindow = result.Action(new ActionContext()
{
SpecialKeyState = new GloablHotkey().CheckModifiers()
SpecialKeyState = new GlobalHotkey().CheckModifiers()
});
if (hideWindow)
{