VirtualBox

Ignore:
Timestamp:
Jul 30, 2009 12:42:08 PM (15 years ago)
Author:
vboxsync
Message:

Main: coding style: have Main obey the standard VirtualBox coding style rules (no functional changes)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/SnapshotImpl.cpp

    r21835 r21878  
    130130
    131131    /* Enclose the state transition Ready->InUninit->NotReady */
    132     AutoUninitSpan autoUninitSpan (this);
     132    AutoUninitSpan autoUninitSpan(this);
    133133    if (autoUninitSpan.uninitDone())
    134134        return;
     
    251251    CheckComRCReturnRC(autoCaller.rc());
    252252
    253     AutoReadLock alock (this);
     253    AutoReadLock alock(this);
    254254
    255255    m->id.toUtf16().cloneTo(aId);
     
    264264    CheckComRCReturnRC(autoCaller.rc());
    265265
    266     AutoReadLock alock (this);
     266    AutoReadLock alock(this);
    267267
    268268    m->name.cloneTo(aName);
     
    302302    CheckComRCReturnRC(autoCaller.rc());
    303303
    304     AutoReadLock alock (this);
     304    AutoReadLock alock(this);
    305305
    306306    m->description.cloneTo(aDescription);
     
    336336    CheckComRCReturnRC(autoCaller.rc());
    337337
    338     AutoReadLock alock (this);
     338    AutoReadLock alock(this);
    339339
    340340    *aTimeStamp = RTTimeSpecGetMilli(&m->timeStamp);
     
    349349    CheckComRCReturnRC(autoCaller.rc());
    350350
    351     AutoReadLock alock (this);
     351    AutoReadLock alock(this);
    352352
    353353    *aOnline = !stateFilePath().isNull();
     
    362362    CheckComRCReturnRC(autoCaller.rc());
    363363
    364     AutoReadLock alock (this);
     364    AutoReadLock alock(this);
    365365
    366366    m->pMachine.queryInterfaceTo(aMachine);
     
    375375    CheckComRCReturnRC(autoCaller.rc());
    376376
    377     AutoReadLock alock (this);
    378 
    379     mParent.queryInterfaceTo (aParent);
    380     return S_OK;
    381 }
    382 
    383 STDMETHODIMP Snapshot::COMGETTER(Children) (ComSafeArrayOut (ISnapshot *, aChildren))
     377    AutoReadLock alock(this);
     378
     379    mParent.queryInterfaceTo(aParent);
     380    return S_OK;
     381}
     382
     383STDMETHODIMP Snapshot::COMGETTER(Children) (ComSafeArrayOut(ISnapshot *, aChildren))
    384384{
    385385    CheckComArgOutSafeArrayPointerValid(aChildren);
     
    537537ComObjPtr<Snapshot> Snapshot::findChildOrSelf(IN_BSTR aName)
    538538{
    539     ComObjPtr <Snapshot> child;
    540     AssertReturn (aName, child);
     539    ComObjPtr<Snapshot> child;
     540    AssertReturn(aName, child);
    541541
    542542    AutoCaller autoCaller(this);
    543543    AssertComRC(autoCaller.rc());
    544544
    545     AutoReadLock alock (this);
     545    AutoReadLock alock(this);
    546546
    547547    if (m->name == aName)
     
    673673            Key hwNode = aNode.createKey ("Hardware");
    674674            HRESULT rc = snapshotMachine->saveHardware(hwNode);
    675             CheckComRCReturnRC (rc);
     675            CheckComRCReturnRC(rc);
    676676        }
    677677
     
    680680            Key storageNode = aNode.createKey ("StorageControllers");
    681681            HRESULT rc = snapshotMachine->saveStorageControllers(storageNode);
    682             CheckComRCReturnRC (rc);
     682            CheckComRCReturnRC(rc);
    683683        }
    684684    }
     
    698698            Key snapshotNode = snapshotsNode.createKey("Snapshot");
    699699            rc = (*it)->saveSnapshotImpl(snapshotNode, aAttrsOnly);
    700             CheckComRCReturnRC (rc);
     700            CheckComRCReturnRC(rc);
    701701        }
    702702    }
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