VirtualBox

Changeset 14343 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 19, 2008 9:48:40 AM (16 years ago)
Author:
vboxsync
Message:

Corrected a couple of typos in comments. No code changes.

File:
1 edited

Legend:

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

    r14313 r14343  
    22
    33/** @file
    4  * Implmentation of IVirtualBox in VBoxSVC.
     4 * Implementation of IVirtualBox in VBoxSVC.
    55 */
    66
     
    13911391
    13921392        /* load the settings file (we don't reuse the existing handle but
    1393          * request a new one to allow for concurrent multithreaded reads) */
     1393         * request a new one to allow for concurrent multi-threaded reads) */
    13941394        File file (File::Mode_Read, Utf8Str (mData.mCfgFile.mName));
    13951395        XmlTreeBackend tree;
     
    14891489
    14901490        /* load the settings file (we don't reuse the existing handle but
    1491          * request a new one to allow for concurrent multithreaded reads) */
     1491         * request a new one to allow for concurrent multi-threaded reads) */
    14921492        File file (File::Mode_Read, Utf8Str (mData.mCfgFile.mName));
    14931493        XmlTreeBackend tree;
     
    19061906 * Usually gets called upon progress object initialization.
    19071907 *
    1908  * @param aProgress Peration to add to the collection.
     1908 * @param aProgress Operation to add to the collection.
    19091909 *
    19101910 * @note Doesn't lock objects.
     
    19311931/**
    19321932 * Removes the progress from the global collection of pending operations.
    1933  * Usualy gets called upon progress completion.
     1933 * Usually gets called upon progress completion.
    19341934 *
    19351935 * @param aId   UUID of the progress operation to remove
     
    19741974 *  The user function is supposed to communicate to the helper process
    19751975 *  using the \a aClient argument to do the requested job and optionally expose
    1976  *  the prgress through the \a aProgress object. The user function should never
     1976 *  the progress through the \a aProgress object. The user function should never
    19771977 *  call notifyComplete() on it: this will be done automatically using the
    19781978 *  result code returned by the function.
     
    20002000 *  message to indicate a process termination.
    20012001 *
    2002  *  @param  aPrivileged |true| to start the SVC Hepler process as a privlieged
     2002 *  @param  aPrivileged |true| to start the SVC Helper process as a privileged
    20032003 *                      user that can perform administrative tasks
    20042004 *  @param  aFunc       user function to run
     
    21292129                if (vrc2 == VERR_CANCELLED)
    21302130                    rc = setError (E_FAIL,
    2131                         tr ("Operatiion cancelled by the user"));
     2131                        tr ("Operation cancelled by the user"));
    21322132                else
    21332133                    rc = setError (E_FAIL,
     
    25222522 * @note It can be possible that a session machine from the list has been
    25232523 * already uninitialized, so do a usual AutoCaller/AutoReadLock sequence
    2524  * whenaccessing unprotected data directly.
     2524 * when accessing unprotected data directly.
    25252525 *
    25262526 * @note Locks objects for reading.
     
    35993599/**
    36003600 * Attempts to cast from a raw interface pointer to an underlying object.
    3601  * On sucess, @a aTo will contain the object reference. On failure, @a aTo will
     3601 * On success, @a aTo will contain the object reference. On failure, @a aTo will
    36023602 * be set to @c null and an extended error info will be returned.
    36033603 *
     
    36813681
    36823682/**
    3683  * Creates the path to the specified file accoring to the path information
     3683 * Creates the path to the specified file according to the path information
    36843684 * present in the file name.
    36853685 *
    36863686 * Note that the given file name must contain the full path otherwise the
    3687  * extracted reliative path will be created based on the current working
     3687 * extracted relative path will be created based on the current working
    36883688 * directory which is normally unknown.
    36893689 *
     
    38353835 * if the backup file already exists.
    38363836 *
    3837  * @param aFileName     Orignal settings file name.
     3837 * @param aFileName     Original settings file name.
    38383838 * @param aOldFormat    Version of the original format.
    38393839 * @param aBakFileName  File name of the created backup copy (only on success).
     
    38993899    try
    39003900    {
    3901         /* rethrow the current exception */
     3901        /* re-throw the current exception */
    39023902        throw;
    39033903    }
     
    39303930 *  S_OK, but subsequent #isConfigLocked() will return FALSE. This is used
    39313931 *  in some places to determine the (valid) situation when no config file
    3932  *  exists yet, and therefore a new one should be created from scatch.
     3932 *  exists yet, and therefore a new one should be created from scratch.
    39333933 */
    39343934HRESULT VirtualBox::lockConfig()
     
    39533953
    39543954            /*
    3955              *  It is ok if the file is not found, it will be created by
     3955             *  It is OK if the file is not found, it will be created by
    39563956             *  init(). Otherwise return an error.
    39573957             */
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