Changeset 30649 in vbox
- Timestamp:
- Jul 6, 2010 8:38:11 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.cpp
r30642 r30649 690 690 /* If keyboard event handler is NOT currently installed; 691 691 * Or installed but NOT for that window: */ 692 if (m_iKeyboardGrabViewIndex != uScreenId)692 if (m_iKeyboardGrabViewIndex != (int)uScreenId) 693 693 { 694 694 /* If keyboard event handler is NOT currently installed: */ … … 706 706 { 707 707 /* If keyboard event handler is installed exactly for that window: */ 708 if (m_iKeyboardGrabViewIndex == uScreenId)708 if (m_iKeyboardGrabViewIndex == (int)uScreenId) 709 709 { 710 710 /* Remove the keyboard event handler: */ … … 883 883 UIKeyboardHandler::darwinEventHandlerProc, this); 884 884 885 ::DarwinGrabKeyboard (false);885 ::DarwinGrabKeyboard (false); 886 886 } 887 887 else … … 907 907 if (eventClass == kEventClassKeyboard) 908 908 { 909 if (pKeyboardHandler->darwinKeyboardEvent (pvCocoaEvent, inEvent))909 if (pKeyboardHandler->darwinKeyboardEvent (pvCocoaEvent, inEvent)) 910 910 return true; 911 911 }
Note:
See TracChangeset
for help on using the changeset viewer.