VirtualBox

Changeset 39715 in vbox


Ignore:
Timestamp:
Jan 7, 2012 2:05:02 AM (13 years ago)
Author:
vboxsync
Message:

nits.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/AutoCaller.h

    r28800 r39715  
    174174 * {
    175175 *     AutoCaller autoCaller(this);
    176  *     if (FAILED(autoCaller.rc())) return autoCaller.rc();
    177  *     ...
     176 *     HRESULT hrc = autoCaller.rc();
     177 *     if (SUCCEEDED(hrc))
     178 *     {
     179 *         ...
     180 *     }
     181 *     return hrc;
     182 * }
    178183 * </code>
    179184 *
     
    199204 * {
    200205 *     AutoLimitedCaller autoCaller(this);
    201  *     if (FAILED(autoCaller.rc())) return autoCaller.rc();
    202  *     ...
     206 *     HRESULT hrc = autoCaller.rc();
     207 *     if (SUCCEEDED(hrc))
     208 *     {
     209 *         ...
     210 *     }
     211 *     return hrc;
    203212 * </code>
    204213 *
     
    244253 * HRESULT Component::init()
    245254 * {
    246  *     AutoInitSpan autoInitSpan (this);
    247  *     AssertReturn (autoInitSpan.isOk(), E_FAIL);
     255 *     AutoInitSpan autoInitSpan(this);
     256 *     AssertReturn(autoInitSpan.isOk(), E_FAIL);
    248257 *     ...
    249258 *     if (FAILED(rc))
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