Skip to content

Commit

Permalink
fix more spellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
taooceros committed Mar 29, 2024
1 parent 01bbe8f commit 8ba180b
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 9 deletions.
15 changes: 14 additions & 1 deletion .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,17 @@ runcount
nunit
velopack
vpk
vsc
vsc
appveyor
appwrite
IME
hotkey
prioritise
runas
softpedia
sourcelink
TRAYMOUSEMESSAGE
uninstaller
vkcode
winget
workaround
2 changes: 1 addition & 1 deletion Flow.Launcher.Core/Configuration/Portable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void PreStartCleanUpAfterPortabilityUpdate()
var portableDataDeleteFilePath = Path.Combine(portableDataDir, DataLocation.DeletionIndicatorFile);
var roamingDataDeleteFilePath = Path.Combine(roamingDataDir, DataLocation.DeletionIndicatorFile);

// If the data folder in %appdata% is marked for deletion,
// If the data folder in %AppData% is marked for deletion,
// delete it and prompt the user to pick the portable data location
if (File.Exists(roamingDataDeleteFilePath))
{
Expand Down
4 changes: 2 additions & 2 deletions Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ public static void CopyAll(this string sourcePath, string targetPath)
// Recursively copy subdirectories by calling itself on each subdirectory until there are no more to copy
foreach (DirectoryInfo subDir in dirs)
{
string temppath = Path.Combine(targetPath, subDir.Name);
CopyAll(subDir.FullName, temppath);
string tempPath = Path.Combine(targetPath, subDir.Name);
CopyAll(subDir.FullName, tempPath);
}
}
catch (Exception)
Expand Down
4 changes: 2 additions & 2 deletions Flow.Launcher/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ private static void RegisterAppDomainExceptions()

public void Dispose()
{
// if sessionending is called, exit proverbially be called when log off / shutdown
// but if sessionending is not called, exit won't be called when log off / shutdown
// if session-ending is called, exit proverbially be called when log off / shutdown
// but if session-ending is not called, exit won't be called when log off / shutdown
if (!_disposed)
{
API.SaveAppAllSettings();
Expand Down
2 changes: 1 addition & 1 deletion Flow.Launcher/Helper/SingleInstance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ private static IList<string> GetCommandLineArgs(string uniqueApplicationName)
catch (NotSupportedException)
{
// The application was clickonce deployed
// Clickonce deployed apps cannot recieve traditional command line arguments
// 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 @@ -315,12 +315,12 @@ public bool IsGameModeOn()

#region Private Methods

private bool KListener_hookedKeyboardCallback(KeyEvent keyevent, int vkcode, SpecialKeyState state)
private bool KListener_hookedKeyboardCallback(KeyEvent keyEvent, int vkCode, SpecialKeyState state)
{
var continueHook = true;
foreach (var x in _globalKeyboardHandlers)
{
continueHook &= x((int)keyevent, vkcode, state);
continueHook &= x((int)keyEvent, vkCode, state);
}

return continueHook;
Expand Down

0 comments on commit 8ba180b

Please sign in to comment.