]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/window.cpp
Fixed precedence order problem for IsShiftDown and IsCtrlDown. (It
[wxWidgets.git] / src / msw / window.cpp
index bba5e5670564ec0febe9334ba10b5a7a338f5271..edc10844eab053ab6d65b144762fd378d49de026 100644 (file)
@@ -130,8 +130,8 @@ wxWindow *wxFindWinFromHandle(WXHWND hWnd);
 static void TranslateKbdEventToMouse(wxWindow *win, int *x, int *y, WPARAM *flags);
 
 // get the current state of SHIFT/CTRL keys
-static inline bool IsShiftDown() { return GetKeyState(VK_SHIFT)& 0x100 != 0; }
-static inline bool IsCtrlDown() { return GetKeyState(VK_CONTROL)& 0x100 != 0; }
+static inline bool IsShiftDown() { return (GetKeyState(VK_SHIFT) & 0x100) != 0; }
+static inline bool IsCtrlDown() { return (GetKeyState(VK_CONTROL) & 0x100) != 0; }
 
 // ---------------------------------------------------------------------------
 // event tables