Changeset 11662 in vbox for trunk/src/VBox/Frontends/VBoxFB
- Timestamp:
- Aug 26, 2008 2:13:24 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35366
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxFB/VBoxFB.cpp
r8170 r11662 573 573 if (numKeyEvents > 1) 574 574 { 575 keyboard->PutScancodes((PRInt32*)keyEvents, numKeyEvents, 575 com::SafeArray <LONG> keys (numKeyEvents); 576 for (size_t idx = 0; idx < keys.size(); ++idx) 577 keys[idx] = keyEvents[idx]; 578 keyboard->PutScancodes(ComSafeArrayAsInParam(keys), 576 579 &codesStored); 577 580 } else
Note:
See TracChangeset
for help on using the changeset viewer.