Changeset 45871 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 2, 2013 9:43:12 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85462
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIHostComboEditor.cpp
r45869 r45871 416 416 i = 'A' - 1; 417 417 if (i == 'Z') 418 i = 'VK_OEM_1'- 1;419 if (i == 'VK_OEM_3')420 i = 'VK_OEM_4'- 1;421 if (i == 'VK_OEM_8')422 i = 'VK_OEM_102'- 1;418 i = VK_OEM_1 - 1; 419 if (i == VK_OEM_3) 420 i = VK_OEM_4 - 1; 421 if (i == VK_OEM_8) 422 i = VK_OEM_102 - 1; 423 423 } 424 424 if (i > VK_OEM_102) … … 430 430 if (pMsg->time != peekMsg.time) 431 431 return false; 432 LogRel(("Both events have the same time stamp.\n")) 432 LogRel(("Both events have the same time stamp.\n")); 433 433 if ( (pMsg->message == WM_KEYDOWN || pMsg->message == WM_SYSKEYDOWN) 434 434 && (peekMsg.message != WM_KEYDOWN && peekMsg.message != WM_SYSKEYDOWN))
Note:
See TracChangeset
for help on using the changeset viewer.