Changeset 42844 in vbox for trunk/src/VBox
- Timestamp:
- Aug 16, 2012 12:24:54 PM (12 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r42838 r42844 38 38 #include <iprt/getopt.h> 39 39 #include <VBox/log.h> 40 #include <iprt/log.h>41 40 #include "VBoxManage.h" 42 41 43 42 #ifndef VBOX_ONLY_DOCS 44 43 using namespace com; 45 #define LOG_GROUP LOG_GROUP_MAIN46 44 /** @todo refine this after HDD changes; MSC 8.0/64 has trouble with handleModifyVM. */ 47 45 #if defined(_MSC_VER) … … 478 476 case MODIFYVM_VRAM: 479 477 { 480 LogFlow(("Modify VRANM\n"));481 478 CHECK_ERROR(machine, COMSETTER(VRAMSize)(ValueUnion.u32)); 482 479 break; -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r42838 r42844 52 52 PVIDEORECCONTEXT pVideoRecContext; 53 53 #endif 54 #define DEBUG_sunlover55 54 /** 56 55 * Display driver instance data. -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r42843 r42844 1684 1684 } 1685 1685 1686 STDMETHODIMP Machine::COMGETTER(VideoCaptureFile)(BSTR * ppChFile)1686 STDMETHODIMP Machine::COMGETTER(VideoCaptureFile)(BSTR * apFile) 1687 1687 { 1688 1688 AutoCaller autoCaller(this); … … 1690 1690 1691 1691 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 1692 mHWData->mVideoCaptureFile.cloneTo( ppChFile);1693 return S_OK; 1694 } 1695 1696 STDMETHODIMP Machine::COMSETTER(VideoCaptureFile)(IN_BSTR pChFile)1692 mHWData->mVideoCaptureFile.cloneTo(apFile); 1693 return S_OK; 1694 } 1695 1696 STDMETHODIMP Machine::COMSETTER(VideoCaptureFile)(IN_BSTR aFile) 1697 1697 { 1698 1698 AutoCaller autoCaller(this); … … 1700 1700 1701 1701 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 1702 mHWData->mVideoCaptureFile = pChFile;1702 mHWData->mVideoCaptureFile = aFile; 1703 1703 return S_OK; 1704 1704 }
Note:
See TracChangeset
for help on using the changeset viewer.