Changeset 50355 in vbox for trunk/src/VBox/Main/src-server/ApplianceImpl.cpp
- Timestamp:
- Feb 6, 2014 5:55:07 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImpl.cpp
r50197 r50355 372 372 * @return S_OK or error. 373 373 */ 374 STDMETHODIMP VirtualBox::CreateAppliance(IAppliance** anAppliance)374 HRESULT VirtualBox::createAppliance(ComPtr<IAppliance> &aAppliance) 375 375 { 376 376 HRESULT rc; … … 381 381 382 382 if (SUCCEEDED(rc)) 383 appliance.queryInterfaceTo(a nAppliance);383 appliance.queryInterfaceTo(aAppliance.asOutParam()); 384 384 385 385 return rc; … … 613 613 614 614 /* Get the system properties. */ 615 SystemProperties *pSysProps = mVirtualBox-> getSystemProperties();615 SystemProperties *pSysProps = mVirtualBox->i_getSystemProperties(); 616 616 { 617 617 ComObjPtr<MediumFormat> trgFormat = pSysProps->i_mediumFormatFromExtension("iso"); … … 729 729 730 730 /* Get the system properties. */ 731 SystemProperties *pSysProps = mVirtualBox-> getSystemProperties();731 SystemProperties *pSysProps = mVirtualBox->i_getSystemProperties(); 732 732 733 733 /* We need a proper source format description */
Note:
See TracChangeset
for help on using the changeset viewer.