Changeset 54473 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Feb 25, 2015 9:08:53 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.cpp
r54095 r54473 624 624 625 625 /* Scancodes 0x00 (no valid translation) and 0x80 are ignored: */ 626 if (! scan & 0x7F)626 if (!(scan & 0x7F)) 627 627 { 628 628 fResult = true; … … 1603 1603 KeySym ks = wrapXkbKeycodeToKeysym(pDisplay, keyCode, i, 0); 1604 1604 char symbol = 0; 1605 if ( !XkbTranslateKeySym(pDisplay, &ks, 0, &symbol, 1, NULL) == 1)1605 if (XkbTranslateKeySym(pDisplay, &ks, 0, &symbol, 1, NULL) == 0) 1606 1606 symbol = 0; 1607 1607 if (symbol)
Note:
See TracChangeset
for help on using the changeset viewer.