Changeset 73155 in vbox
- Timestamp:
- Jul 16, 2018 11:12:46 AM (6 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
-
include/VirtualBoxImpl.h (modified) (1 diff)
-
src-server/VirtualBoxImpl.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r73003 r73155 313 313 HRESULT createAppliance(ComPtr<IAppliance> &aAppliance); 314 314 HRESULT createUnattendedInstaller(ComPtr<IUnattended> &aUnattended); 315 HRESULT createCloudUserProfileManager(ComPtr<ICloudUserProfileManager> &aManager); 315 316 HRESULT createMedium(const com::Utf8Str &aFormat, 316 317 const com::Utf8Str &aLocation, -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r73003 r73155 79 79 #include "AutoCaller.h" 80 80 #include "Logging.h" 81 82 # include "CloudUserProfileManagerImpl.h" 81 83 82 84 #include <QMTranslator.h> … … 1818 1820 } 1819 1821 1822 HRESULT VirtualBox::createCloudUserProfileManager(ComPtr<ICloudUserProfileManager> &aManager) 1823 { 1824 ComObjPtr<CloudUserProfileManager> ptrCloudUserProfileManager; 1825 HRESULT hrc = ptrCloudUserProfileManager.createObject(); 1826 if (SUCCEEDED(hrc)) 1827 { 1828 AutoReadLock wlock(this COMMA_LOCKVAL_SRC_POS); 1829 hrc = ptrCloudUserProfileManager->init(this); 1830 if (SUCCEEDED(hrc)) 1831 hrc = ptrCloudUserProfileManager.queryInterfaceTo(aManager.asOutParam()); 1832 } 1833 return hrc; 1834 } 1835 1820 1836 HRESULT VirtualBox::createMedium(const com::Utf8Str &aFormat, 1821 1837 const com::Utf8Str &aLocation,
Note:
See TracChangeset
for help on using the changeset viewer.

