VirtualBox

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


Ignore:
Timestamp:
Nov 7, 2013 1:18:13 PM (11 years ago)
Author:
vboxsync
Message:

Main: spaces

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/ApplianceImpl.cpp

    r49103 r49408  
    15591559
    15601560/**
    1561  * Private method; delete all records from the list 
    1562  * m->llDescriptions that match the given type. 
     1561 * Private method; delete all records from the list
     1562 * m->llDescriptions that match the given type.
    15631563 * @param aType
    15641564 * @return
  • trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp

    r49103 r49408  
    373373                 */
    374374
    375                 //1. no host drive CD/DVD image 
     375                //1. no host drive CD/DVD image
    376376                BOOL fHostDrive = false;
    377377                rc = pMedium->COMGETTER(HostDrive)(&fHostDrive);
     
    381381                    continue;
    382382
    383                 //2. the image must be accessible and readable 
     383                //2. the image must be accessible and readable
    384384                MediumState_T ms;
    385385                rc = pMedium->RefreshState(&ms);
     
    389389                    continue;
    390390
    391                 //3. only ISO image is exported 
     391                //3. only ISO image is exported
    392392                Bstr bstrLocation;
    393393                rc = pMedium->COMGETTER(Location)(bstrLocation.asOutParam());
  • trunk/src/VBox/Main/src-server/HostImpl.cpp

    r49235 r49408  
    228228    HostPowerService        *pHostPowerService;
    229229    /** Host's DNS informaton fetching */
    230     HostDnsMonitorProxy         hostDnsMonitorProxy;
     230    HostDnsMonitorProxy     hostDnsMonitorProxy;
    231231};
    232232
  • trunk/src/VBox/Main/src-server/NATNetworkImpl.cpp

    r49295 r49408  
    303303    CheckComArgOutPointerValid(aName);
    304304    AutoCaller autoCaller(this);
    305    
    306     if (FAILED(autoCaller.rc())) 
     305
     306    if (FAILED(autoCaller.rc()))
    307307        return autoCaller.rc();
    308    
     308
    309309    {
    310310        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    311    
     311
    312312        if (aName == mName)
    313313            return S_OK;
     
    341341{
    342342    AutoCaller autoCaller(this);
    343     if (FAILED(autoCaller.rc())) 
     343    if (FAILED(autoCaller.rc()))
    344344        return autoCaller.rc();
    345    
     345
    346346    {
    347347        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    348    
     348
    349349        if (aEnabled == m->fEnabled)
    350350            return S_OK;
     
    392392    if (FAILED(autoCaller.rc()))
    393393        return autoCaller.rc();
    394    
     394
    395395    {
    396396        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    397    
     397
    398398        if (aIPv4NetworkCidr == m->IPv4NetworkCidr)
    399399            return S_OK;
    400        
    401         /* silently ignore network cidr update for now. 
    402          * todo: keep internally guest address of port forward rule 
     400
     401        /* silently ignore network cidr update for now.
     402         * todo: keep internally guest address of port forward rule
    403403         * as offset from network id.
    404404         */
     
    434434{
    435435    AutoCaller autoCaller(this);
    436     if (FAILED(autoCaller.rc())) 
     436    if (FAILED(autoCaller.rc()))
    437437        return autoCaller.rc();
    438    
     438
    439439    {
    440440        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     
    473473
    474474    AutoCaller autoCaller(this);
    475     if (FAILED(autoCaller.rc())) 
     475    if (FAILED(autoCaller.rc()))
    476476        return autoCaller.rc();
    477477
     
    482482            return S_OK;
    483483
    484         /* silently ignore network IPv6 prefix update. 
     484        /* silently ignore network IPv6 prefix update.
    485485         * todo: see similar todo in NATNetwork::COMSETTER(Network)(IN_BSTR)
    486486         */
     
    515515{
    516516    AutoCaller autoCaller(this);
    517     if (FAILED(autoCaller.rc())) 
     517    if (FAILED(autoCaller.rc()))
    518518        return autoCaller.rc();
    519    
     519
    520520    {
    521521        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    522    
     522
    523523        if (aAdvertiseDefaultIPv6Route == m->fAdvertiseDefaultIPv6Route)
    524524            return S_OK;
     
    554554    if (FAILED(autoCaller.rc()))
    555555        return autoCaller.rc();
    556    
     556
    557557    {
    558558        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    559    
     559
    560560        if (aNeedDhcpServer == m->fNeedDhcpServer)
    561561            return S_OK;
     
    685685{
    686686    AutoCaller autoCaller(this);
    687     if (FAILED(autoCaller.rc())) 
     687    if (FAILED(autoCaller.rc()))
    688688        return autoCaller.rc();
    689    
     689
    690690    {
    691691        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     
    696696        if (static_cast<uint32_t>(aLoopbackIp6) == m->u32LoopbackIp6)
    697697            return S_OK;
    698    
     698
    699699        m->u32LoopbackIp6 = aLoopbackIp6;
    700700    }
     
    741741{
    742742    AutoCaller autoCaller(this);
    743     if (FAILED(autoCaller.rc())) 
     743    if (FAILED(autoCaller.rc()))
    744744        return autoCaller.rc();
    745745
     
    813813{
    814814    AutoCaller autoCaller(this);
    815     if (FAILED(autoCaller.rc())) 
     815    if (FAILED(autoCaller.rc()))
    816816        return autoCaller.rc();
    817817
     
    825825    {
    826826        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    827         NATRuleMap& mapRules = aIsIpv6 ? m->mapName2PortForwardRule6 
     827        NATRuleMap& mapRules = aIsIpv6 ? m->mapName2PortForwardRule6
    828828          : m->mapName2PortForwardRule4;
    829        
     829
    830830        NATRuleMap::iterator it = mapRules.find(aPortForwardRuleName);
    831831
     
    841841        mapRules.erase(it);
    842842    }
    843    
     843
    844844    {
    845845        AutoWriteLock vboxLock(mVirtualBox COMMA_LOCKVAL_SRC_POS);
Note: See TracChangeset for help on using the changeset viewer.

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