Skip to content

Commit

Permalink
fix remaining spell
Browse files Browse the repository at this point in the history
  • Loading branch information
taooceros committed Mar 29, 2024
1 parent 8ba180b commit 6c3bcdc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ TRAYMOUSEMESSAGE
uninstaller
vkcode
winget
workaround
workaround
nupkg
2 changes: 1 addition & 1 deletion .github/actions/spelling/excludes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ ignore$
\.csproj$
\.DotSettings$
\.targets$
.*Test.cs$
.*Test.cs$
8 changes: 7 additions & 1 deletion .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,10 @@ JsonRPCV2
Softpedia
img
ime
LPWStr
LPWStr
flowlauncher
hotkeys
LPW
productversion
requery
Wnd
6 changes: 3 additions & 3 deletions Flow.Launcher/Helper/SingleInstance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -305,13 +305,13 @@ private static IList<string> GetCommandLineArgs(string uniqueApplicationName)

try
{
// The application was not clickonce deployed, get args from standard API's
// The application was not ClickOnce deployed, get args from standard API's
args = Environment.GetCommandLineArgs();
}
catch (NotSupportedException)
{
// The application was clickonce deployed
// Clickonce deployed apps cannot receive traditional command line arguments
// The application was ClickOnce deployed
// ClickOnce deployed apps cannot receive traditional command line arguments
// As a workaround command line arguments can be written to a shared location before
// the app is launched and the app can obtain its command line arguments from the
// shared location
Expand Down
4 changes: 2 additions & 2 deletions Flow.Launcher/PublicAPIInstance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public PublicAPIInstance(SettingWindowViewModel settingsVM, MainViewModel mainVM
_settingsVM = settingsVM;
_mainVM = mainVM;
_alphabet = alphabet;
GlobalHotkey.hookedKeyboardCallback = KListener_hookedKeyboardCallback;
GlobalHotkey.hookedKeyboardCallback = KListenerHookedKeyboardCallback;
WebRequest.RegisterPrefix("data", new DataWebRequestFactory());
}

Expand Down Expand Up @@ -315,7 +315,7 @@ public bool IsGameModeOn()

#region Private Methods

private bool KListener_hookedKeyboardCallback(KeyEvent keyEvent, int vkCode, SpecialKeyState state)
private bool KListenerHookedKeyboardCallback(KeyEvent keyEvent, int vkCode, SpecialKeyState state)
{
var continueHook = true;
foreach (var x in _globalKeyboardHandlers)
Expand Down

0 comments on commit 6c3bcdc

Please sign in to comment.