Changeset 47419 in vbox
- Timestamp:
- Jul 26, 2013 11:13:08 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87571
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r47401 r47419 1272 1272 PointingHIDType_T aPointingHID; 1273 1273 hrc = pMachine->COMGETTER(PointingHIDType)(&aPointingHID); H(); 1274 if ( aPointingHID == PointingHIDType_PS2Mouse 1275 || aPointingHID == PointingHIDType_ComboMouse) 1276 { 1277 InsertConfigNode(pInst, "LUN#1", &pLunL0); 1278 InsertConfigString(pLunL0, "Driver", "MouseQueue"); 1279 InsertConfigNode(pLunL0, "Config", &pCfg); 1280 InsertConfigInteger(pCfg, "QueueSize", 128); 1281 1282 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1); 1283 InsertConfigString(pLunL1, "Driver", "MainMouse"); 1284 InsertConfigNode(pLunL1, "Config", &pCfg); 1285 InsertConfigInteger(pCfg, "Object", (uintptr_t)pMouse); 1286 } 1274 InsertConfigNode(pInst, "LUN#1", &pLunL0); 1275 InsertConfigString(pLunL0, "Driver", "MouseQueue"); 1276 InsertConfigNode(pLunL0, "Config", &pCfg); 1277 InsertConfigInteger(pCfg, "QueueSize", 128); 1278 1279 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1); 1280 InsertConfigString(pLunL1, "Driver", "MainMouse"); 1281 InsertConfigNode(pLunL1, "Config", &pCfg); 1282 InsertConfigInteger(pCfg, "Object", (uintptr_t)pMouse); 1287 1283 1288 1284 /*
Note:
See TracChangeset
for help on using the changeset viewer.