VirtualBox

Changeset 48955 in vbox for trunk/src/VBox/Main/include


Ignore:
Timestamp:
Oct 7, 2013 9:59:25 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
89652
Message:

Main: Whitespace (including tabs!) and svn:keywords cleanups by scm.

Location:
trunk/src/VBox/Main/include
Files:
10 edited

Legend:

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

    r47716 r48955  
    235235    struct XMLStack;
    236236
    237     void buildXML(AutoWriteLockBase& writeLock, 
    238                   xml::Document &doc, 
    239                   XMLStack &stack, 
    240                   const Utf8Str &strPath, 
     237    void buildXML(AutoWriteLockBase& writeLock,
     238                  xml::Document &doc,
     239                  XMLStack &stack,
     240                  const Utf8Str &strPath,
    241241                  ovf::OVFVersion_T enFormat);
    242242    void buildXMLForOneVirtualSystem(AutoWriteLockBase& writeLock,
  • trunk/src/VBox/Main/include/ApplianceImplPrivate.h

    r47963 r48955  
    7777    bool                fManifest;      // Create a manifest file on export
    7878    bool                fSha256;        // true = SHA256 (OVF 2.0), false = SHA1 (OVF 1.0)
    79     Utf8Str             strOVFSHADigest;//SHA digest of OVf file. It is stored here after reading OVF file (before import) 
     79    Utf8Str             strOVFSHADigest;//SHA digest of OVf file. It is stored here after reading OVF file (before import)
    8080
    8181    RTCList<ImportOptions_T> optList;
  • trunk/src/VBox/Main/include/DHCPServerImpl.h

    r47018 r48955  
    4848 *  for server configuration needs, it's perhaps better to use (VM,slot) pair
    4949 *  (vm-name, slot) <----> (MAC)
    50  * 
     50 *
    5151 *  but for client configuration, when server will have MACs at hand, it'd be
    5252 *  easier to requiest options by MAC.
    5353 *  (MAC) <----> (option-list)
    5454 *
    55  *  Doubts: What should be done if MAC changed for (vm-name, slot), when syncing should? 
    56  *  XML: serialization of dependecy (DHCP options) - (VM,slot) shouldn't be done via MAC in 
     55 *  Doubts: What should be done if MAC changed for (vm-name, slot), when syncing should?
     56 *  XML: serialization of dependecy (DHCP options) - (VM,slot) shouldn't be done via MAC in
    5757 *  the middle.
    5858 */
     
    114114    STDMETHOD(GetMacOptions)(IN_BSTR aMAC, ComSafeArrayOut(BSTR, aValues));
    115115    STDMETHOD(COMGETTER(EventSource))(IEventSource **aEventSource);
    116  
     116
    117117    STDMETHOD(SetConfiguration)(IN_BSTR aIPAddress, IN_BSTR aNetworkMask, IN_BSTR aFromIPAddress, IN_BSTR aToIPAddress);
    118118
  • trunk/src/VBox/Main/include/DisplayImpl.h

    r47774 r48955  
    5757
    5858    uint16_t flags;
    59    
     59
    6060    /* for saving the rectangles arrived during fb resize is in progress. */
    6161    PRTRECT mpSavedVisibleRegion;
     
    299299    int  vbvaLock(void);
    300300    void vbvaUnlock(void);
    301    
     301
    302302    RTCRITSECT mSaveSeamlessRectLock;
    303303    int  SaveSeamlessRectLock(void);
    304304    void SaveSeamlessRectUnLock(void);
    305    
     305
    306306public:
    307307    static int  displayTakeScreenshotEMT(Display *pDisplay, ULONG aScreenId, uint8_t **ppu8Data, size_t *pcbData, uint32_t *pu32Width, uint32_t *pu32Height);
  • trunk/src/VBox/Main/include/EmulatedUSBImpl.h

    r48631 r48955  
    6565    {
    6666        Data()
    67         {
    68         }
     67        {
     68        }
    6969
    7070        ComObjPtr<Console> pConsole;
  • trunk/src/VBox/Main/include/HostVideoInputDeviceImpl.h

    r48607 r48955  
    5656    {
    5757        Data()
    58         {
    59         }
     58        {
     59        }
    6060
    6161        com::Utf8Str name;
  • trunk/src/VBox/Main/include/Performance.h

    r48013 r48955  
    174174    } VMSTATMASK;
    175175
    176     const ULONG VMSTATS_GUEST_CPULOAD = 
     176    const ULONG VMSTATS_GUEST_CPULOAD =
    177177        VMSTATMASK_GUEST_CPUUSER    | VMSTATMASK_GUEST_CPUKERNEL |
    178178        VMSTATMASK_GUEST_CPUIDLE;
  • trunk/src/VBox/Main/include/TokenImpl.h

    r48431 r48955  
    5252    {
    5353        Data()
    54         {
    55         }
     54        {
     55        }
    5656
    5757        ComObjPtr<SessionMachine> pSessionMachine;
  • trunk/src/VBox/Main/include/VirtualBoxImpl.h

    r48804 r48955  
    227227                                 IN_BSTR aGuestIp, LONG aGuestPort);
    228228    void onHostNameResolutionConfigurationChange();
    229    
     229
    230230    int natNetworkRefInc(IN_BSTR aNetworkName);
    231231    int natNetworkRefDec(IN_BSTR aNetworkName);
  • trunk/src/VBox/Main/include/ovfreader.h

    r46518 r48955  
    200200struct EnvelopeData
    201201{
    202     OVFVersion_T version;//OVF standard version, it is used internally only by VirtualBox 
     202    OVFVersion_T version;//OVF standard version, it is used internally only by VirtualBox
    203203    RTCString lang;//language
    204204
     
    378378protected:
    379379    virtual void _checkConsistencyAndCompliance() throw (OVFLogicError);
    380     virtual const RTCString& getItemName() 
     380    virtual const RTCString& getItemName()
    381381    {
    382382        return _getItemName();
     
    387387    bool fDefault;//true means that some fields were absent in the XML and some default values were assigned to.
    388388
    389     virtual const RTCString& _getItemName() 
     389    virtual const RTCString& _getItemName()
    390390    {
    391391        return itemName;
     
    432432    RTCString itemName;
    433433
    434     virtual const RTCString& _getItemName() 
     434    virtual const RTCString& _getItemName()
    435435    {
    436436        return itemName;
     
    478478    RTCString itemName;
    479479
    480     virtual const RTCString& _getItemName() 
     480    virtual const RTCString& _getItemName()
    481481    {
    482482        return itemName;
     
    640640
    641641    // Data fields
    642     EnvelopeData                m_envelopeData;       //data of root element "Envelope" 
     642    EnvelopeData                m_envelopeData;       //data of root element "Envelope"
    643643    RTCString                   m_strPath;            // file name given to constructor
    644644    DiskImagesMap               m_mapDisks;           // map of DiskImage structs, sorted by DiskImage.strDiskId
Note: See TracChangeset for help on using the changeset viewer.

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