diff --git a/src/modules/keyboardmanager/common/KeyboardManagerState.cpp b/src/modules/keyboardmanager/common/KeyboardManagerState.cpp index 7a91c84d45..c2061b5ac8 100644 --- a/src/modules/keyboardmanager/common/KeyboardManagerState.cpp +++ b/src/modules/keyboardmanager/common/KeyboardManagerState.cpp @@ -618,13 +618,13 @@ std::wstring KeyboardManagerState::GetCurrentConfigName() return currentConfig; } -// Sets the activated target application in app-specfic shortcut +// Sets the activated target application in app-specific shortcut void KeyboardManagerState::SetActivatedApp(const std::wstring& appName) { activatedAppSpecificShortcutTarget = appName; } -// Gets the activated target application in app-specfic shortcut +// Gets the activated target application in app-specific shortcut std::wstring KeyboardManagerState::GetActivatedApp() { return activatedAppSpecificShortcutTarget; diff --git a/src/modules/keyboardmanager/common/KeyboardManagerState.h b/src/modules/keyboardmanager/common/KeyboardManagerState.h index 85a0467249..70969de2d5 100644 --- a/src/modules/keyboardmanager/common/KeyboardManagerState.h +++ b/src/modules/keyboardmanager/common/KeyboardManagerState.h @@ -85,7 +85,7 @@ private: std::map> keyDelays; std::mutex keyDelays_mutex; - // Stores the activated target application in app-specfic shortcut + // Stores the activated target application in app-specific shortcut std::wstring activatedAppSpecificShortcutTarget; // Thread safe boolean value to check if remappings are currently enabled. This is used to disable remappings while the remap tables are being updated by the UI thread @@ -225,10 +225,10 @@ public: // Gets the Current Active Configuration Name. std::wstring GetCurrentConfigName(); - // Sets the activated target application in app-specfic shortcut + // Sets the activated target application in app-specific shortcut void SetActivatedApp(const std::wstring& appName); - // Gets the activated target application in app-specfic shortcut + // Gets the activated target application in app-specific shortcut std::wstring GetActivatedApp(); bool AreRemappingsEnabled();