Changeset 45890 in vbox
- Timestamp:
- May 3, 2013 9:57:44 AM (12 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r45814 r45890 5394 5394 { 5395 5395 if (aRemove) 5396 rc = doStorageDeviceDetach(aMediumAttachment, ptrVM.rawUVM(), aSilent);5396 rc = doStorageDeviceDetach(aMediumAttachment, ptrVM.rawUVM(), RT_BOOL(aSilent)); 5397 5397 else 5398 rc = doStorageDeviceAttach(aMediumAttachment, ptrVM.rawUVM(), aSilent);5398 rc = doStorageDeviceAttach(aMediumAttachment, ptrVM.rawUVM(), RT_BOOL(aSilent)); 5399 5399 ptrVM.release(); 5400 5400 } -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r45675 r45890 1329 1329 break; 1330 1330 case GraphicsControllerType_VBoxVGA: 1331 rc = configGraphicsController(pDevices, "vga", pBusMgr, pMachine, biosSettings, fHMEnabled); 1331 rc = configGraphicsController(pDevices, "vga", pBusMgr, pMachine, biosSettings, 1332 RT_BOOL(fHMEnabled)); 1332 1333 if (FAILED(rc)) 1333 1334 return rc; -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r45878 r45890 2206 2206 if (pVMMDevPort) 2207 2207 pVMMDevPort->pfnRequestDisplayChange(pVMMDevPort, aWidth, aHeight, aBitsPerPixel, 2208 aDisplay, aOriginX, aOriginY, aEnabled, aChangeOrigin); 2208 aDisplay, aOriginX, aOriginY, 2209 RT_BOOL(aEnabled), RT_BOOL(aChangeOrigin)); 2209 2210 } 2210 2211 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.