VirtualBox

Changeset 33540 in vbox for trunk/src/VBox/Frontends/VBoxBFE


Ignore:
Timestamp:
Oct 28, 2010 9:27:05 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
67140
Message:

*: spelling fixes, thanks Timeless!

Location:
trunk/src/VBox/Frontends/VBoxBFE
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp

    r28800 r33540  
    615615     * Here update rectangles are accumulated to form an update area.
    616616     * @todo
    617      * Now the simplies method is used which builds one rectangle that
     617     * Now the simplest method is used which builds one rectangle that
    618618     * includes all update areas. A bit more advanced method can be
    619619     * employed here. The method should be fast however.
     
    964964    /* Current record is complete. */
    965965
    966     /* The size of largest contiguos chunk in the ring biffer. */
     966    /* The size of largest contiguous chunk in the ring biffer. */
    967967    uint32_t u32BytesTillBoundary = VBVA_RING_BUFFER_SIZE - mpVbvaMemory->off32Data;
    968968
  • trunk/src/VBox/Frontends/VBoxBFE/HGCM.cpp

    r28800 r33540  
    922922/** The method creates a service and references it.
    923923 *
    924  * @param pszServcieLibrary  The library to be loaded.
     924 * @param pszServiceLibrary  The library to be loaded.
    925925 * @param pszServiceName     The name of the service.
    926926 * @return VBox rc.
  • trunk/src/VBox/Frontends/VBoxBFE/HGCMThread.cpp

    r28800 r33540  
    9898
    9999        /* Message queue variables. Messages are inserted at tail of message
    100          * queue. They are consumed by worker thread sequently. If a message was
     100         * queue. They are consumed by worker thread sequentially. If a message was
    101101         * consumed, it is removed from message queue.
    102102         */
  • trunk/src/VBox/Frontends/VBoxBFE/HGCMThread.h

    r28800 r33540  
    184184
    185185
    186 /** Worker thread has processed a message previuosly obtained with hgcmMsgGet.
     186/** Worker thread has processed a message previously obtained with hgcmMsgGet.
    187187 *
    188188 * @param pMsg          Processed message pointer.
  • trunk/src/VBox/Frontends/VBoxBFE/SDLConsole.cpp

    r32388 r33540  
    13991399        bi.bV5BitCount = 32;
    14001400        bi.bV5Compression = BI_BITFIELDS;
    1401         // specifiy a supported 32 BPP alpha format for Windows XP
     1401        // specify a supported 32 BPP alpha format for Windows XP
    14021402        bi.bV5RedMask   = 0x00FF0000;
    14031403        bi.bV5GreenMask = 0x0000FF00;
  • trunk/src/VBox/Frontends/VBoxBFE/SDLConsole.h

    r32851 r33540  
    3535#include <iprt/string.h>
    3636
    37 /** Pointer shape change event data strucure */
     37/** Pointer shape change event data structure */
    3838struct PointerShapeChangeData
    3939{
  • trunk/src/VBox/Frontends/VBoxBFE/SDLFramebuffer.cpp

    r28800 r33540  
    398398 * @param   y top row
    399399 * @param   w width in pixels
    400  * @param   h heigh in pixels
     400 * @param   h height in pixels
    401401 */
    402402void SDLFramebuffer::update(int x, int y, int w, int h)
  • trunk/src/VBox/Frontends/VBoxBFE/USBProxyService.cpp

    r28800 r33540  
    22 *
    33 * VBox frontends: Basic Frontend (BFE):
    4  * Implemenation of USBProxyService class
     4 * Implementation of USBProxyService class
    55 */
    66
  • trunk/src/VBox/Frontends/VBoxBFE/USBProxyService.h

    r28800 r33540  
    3737
    3838    /**
    39      * A VM is trying to capture a device, do necessary preperations.
     39     * A VM is trying to capture a device, do necessary preparations.
    4040     *
    4141     * @returns VBox status code.
  • trunk/src/VBox/Frontends/VBoxBFE/USBProxyServiceLinux.cpp

    r28800 r33540  
    592592            /*
    593593             * Interpret the line.
    594              * (Ordered by normal occurence.)
     594             * (Ordered by normal occurrence.)
    595595             */
    596596            char ch = psz[0];
  • trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp

    r32388 r33540  
    18561856                    /*
    18571857                     * The TAP driver does all the opening and setting up,
    1858                      * as it was originally was ment to be (stupid fork() problems).
     1858                     * as it was originally was meant to be (stupid fork() problems).
    18591859                     */
    18601860                    rc = CFGMR3InsertString(pCfg, "Device", g_aNetDevs[ulInstance].pszName); UPDATE_RC();
  • trunk/src/VBox/Frontends/VBoxBFE/VBoxBFEMain-darwin.m

    r16895 r33540  
    1212#import <iprt/assert.h>
    1313
    14 /* For some reaon, Apple removed setAppleMenu from the headers in 10.4,
     14/* For some reason, Apple removed setAppleMenu from the headers in 10.4,
    1515 but the method still is there and works. To avoid warnings, we declare
    1616 it ourselves here. */
  • trunk/src/VBox/Frontends/VBoxBFE/VirtualBoxBase.h

    r30714 r33540  
    255255
    256256/**
    257  *  Declares an empty construtor and destructor for the given class.
     257 *  Declares an empty constructor and destructor for the given class.
    258258 *  This is useful to prevent the compiler from generating the default
    259259 *  ctor and dtor, which in turn allows to use forward class statements
     
    271271
    272272/**
    273  *  Defines an empty construtor and destructor for the given class.
     273 *  Defines an empty constructor and destructor for the given class.
    274274 *  See DECLARE_EMPTY_CTOR_DTOR for more info.
    275275 */
     
    326326
    327327    /**
    328      *  Virtual unintialization method. Called during parent object's
     328     *  Virtual uninitialization method. Called during parent object's
    329329     *  uninitialization, if the given subclass instance is a dependent child of
    330      *  a class dervived from VirtualBoxBaseWithChildren (@sa
     330     *  a class derived from VirtualBoxBaseWithChildren (@sa
    331331     *  VirtualBoxBaseWithChildren::addDependentChild). In this case, this
    332      *  method's impelemtation must call setReady (false),
     332     *  method's implementation must call setReady (false),
    333333     */
    334334    virtual void uninit() {}
     
    355355     *  The constructor, given the VirtualBoxBase pointer, safely acquires the
    356356     *  lock protecting its data. This lock will be released automatically
    357      *  when the instance goes out of scope (block, funciton etc.).
     357     *  when the instance goes out of scope (block, function etc.).
    358358     *
    359359     *  @note
     
    534534     *  by the context parameter. Additionally, a comment to the source text
    535535     *  string text can be given. This comment (which is NULL by default)
    536      *  is helpful in sutuations where it is necessary to distinguish between
     536     *  is helpful in situations where it is necessary to distinguish between
    537537     *  two or more semantically different roles of the same source text in the
    538538     *  same context.
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