VirtualBox

Changeset 73167 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Jul 17, 2018 7:41:21 AM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
123769
Message:

bugref:9152. scm issues.

Location:
trunk/src/VBox/Main
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r73154 r73167  
    2491024910      <desc>
    2491124911        Creates a cloud operation object for the passed profile
    24912         if profile name is NULL or empty string creates operation for the active profile.
    24913         if profile name is NULL or empty string and there is not the active profile
    24914         returns "VERR_INVALID_PARAMETER"
     24912        if profile name is NULL or empty string creates operation for the active profile.
     24913        if profile name is NULL or empty string and there is not the active profile
     24914        returns "VERR_INVALID_PARAMETER"
    2491524915      </desc>
    2491624916      <param name="profileName" type="wstring" dir="in">
     
    2492624926      <param name="opId" type="uuid" mod="string" dir="return">
    2492724927        <desc>
    24928           UUID of the operation.
    24929           It's used later when user chooses and runs this cloud operation
     24928          UUID of the operation.
     24929          It's used later when user chooses and runs this cloud operation
    2493024930        </desc>
    2493124931      </param>
     
    2493824938      <param name="opId" type="uuid" mod="string" dir="in">
    2493924939        <desc>
    24940           UUID of the operation.
     24940          UUID of the operation.
    2494124941        </desc>
    2494224942      </param>
     
    2495424954      <param name="opId" type="uuid" mod="string" dir="in">
    2495524955        <desc>
    24956           UUID of the operation.
     24956          UUID of the operation.
    2495724957        </desc>
    2495824958      </param>
     
    2502625026      <param name="opId" type="uuid" mod="string" dir="in">
    2502725027        <desc>
    25028           UUID of the operation.
     25028          UUID of the operation.
    2502925029        </desc>
    2503025030      </param>
  • trunk/src/VBox/Main/src-server/CloudClientImpl.cpp

    r73164 r73167  
    155155        hrc = arc;
    156156        LogRel(("Get cought an exception %d\n", hrc));
    157     } 
     157    }
    158158    catch (std::bad_alloc)
    159159    {
     
    173173    LogRel(("CloudClient::getOperationParameters: %d, %s\n", aCloudOperation, aJsonString.c_str()));
    174174    HRESULT hrc = VERR_NOT_IMPLEMENTED;
    175     /*
    176      
    177     createCloudAPI
    178     */
     175
    179176    return hrc;
    180177}
  • trunk/src/VBox/Main/src-server/CloudUserProfileListImpl.cpp

    r73164 r73167  
    4242}
    4343
    44 SimpleConfigFile::~SimpleConfigFile() 
     44SimpleConfigFile::~SimpleConfigFile()
    4545{
    4646    LogRel(("SimpleConfigFile::~SimpleConfigFile()\n"));
     
    367367    if (SUCCEEDED(hrc))
    368368    {
     369        ComObjPtr<CloudClientOCI> ptrCloudClientOCI;
     370        hrc = ptrCloudClientOCI.createObject();
    369371        AutoReadLock wlock(this COMMA_LOCKVAL_SRC_POS);
    370         hrc = ptrCloudClient->initCloudClient(this, mParent, providerId, aProfileName);
     372        hrc = ptrCloudClientOCI->initCloudClient(this, mParent, providerId, aProfileName);
    371373        if (SUCCEEDED(hrc))
    372374        {
     375            ptrCloudClient = ptrCloudClientOCI;
    373376            hrc = ptrCloudClient.queryInterfaceTo(aCloudClient.asOutParam());
    374377        }
     
    430433}
    431434
    432 HRESULT OCIUserProfileList::updateProfile(const com::Utf8Str &aProfileName, 
     435HRESULT OCIUserProfileList::updateProfile(const com::Utf8Str &aProfileName,
    433436                                          const std::vector<com::Utf8Str> &aNames,
    434437                                          const std::vector<com::Utf8Str> &aValues)
  • trunk/src/VBox/Main/src-server/CloudUserProfileManagerImpl.cpp

    r73164 r73167  
    104104}
    105105
    106 HRESULT CloudUserProfileManager::getProfilesByProvider(CloudProviderId_T aProviderType, 
     106HRESULT CloudUserProfileManager::getProfilesByProvider(CloudProviderId_T aProviderType,
    107107                                                       ComPtr<ICloudUserProfileList> &aProfiles)
    108108{
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette