diff --git a/windows/src/engine/keyman32/globals.h b/windows/src/engine/keyman32/globals.h index 2d2a6d3e89..f21ff0ef3c 100644 --- a/windows/src/engine/keyman32/globals.h +++ b/windows/src/engine/keyman32/globals.h @@ -309,5 +309,4 @@ void WINAPI SetCustomPostKeyCallback(CUSTOMPOSTKEYCALLBACKPROC proc); extern BOOL isKeymanKeyboardActive; // is the active keyboard a Keyman keyboard - #endif diff --git a/windows/src/engine/keyman32/k32_lowlevelkeyboardhook.cpp b/windows/src/engine/keyman32/k32_lowlevelkeyboardhook.cpp index 6f43c42db0..2ab64396fb 100644 --- a/windows/src/engine/keyman32/k32_lowlevelkeyboardhook.cpp +++ b/windows/src/engine/keyman32/k32_lowlevelkeyboardhook.cpp @@ -226,8 +226,8 @@ LRESULT _kmnLowLevelKeyboardProc( hs->vkCode == VK_PROCESSKEY || hs->vkCode == VK_PACKET || !isKeymanKeyboardActive) { // This key event was generated by Keyman, so pass it through // dwExtraInfo is set to 0x4321DCBA by mstsc which does prefiltering. So we ignore for anything where dwExtraInfo!=0 because it - // probably is not hardware generated and may cause more issues to filter it/ - // We also ignore if a keyman keyboard is not currently active. + // probably is not hardware generated and may cause more issues to filter it. + // We also ignore if a Keyman keyboard is not currently active. return CallNextHookEx(Globals::get_hhookLowLevelKeyboardProc(), nCode, wParam, lParam); } diff --git a/windows/src/engine/kmtip/globals.h b/windows/src/engine/kmtip/globals.h index 4f071848d9..1d78b98908 100644 --- a/windows/src/engine/kmtip/globals.h +++ b/windows/src/engine/kmtip/globals.h @@ -107,7 +107,6 @@ extern CRITICAL_SECTION g_cs; extern DWORD g_dwDeepIntegration; // I4375 -//extern const CLSID c_clsidKMTipTextService; extern const GUID c_guidKeymanDeadkeysProp;