VirtualBox

Changeset 6616 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Jan 30, 2008 5:31:18 PM (17 years ago)
Author:
vboxsync
Message:

Renaming TriStateBool enum qualifiers:
True => TSTrue
False => TSFalse
Default => TSDefault

Location:
trunk/src/VBox/Main
Files:
3 edited

Legend:

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

    r6597 r6616  
    153153    BOOL fHWVirtExEnabled;
    154154    hrc = pMachine->COMGETTER(HWVirtExEnabled)(&hwVirtExEnabled);                   H();
    155     if (hwVirtExEnabled == TriStateBool_Default)
     155    if (hwVirtExEnabled == TriStateBool_TSDefault)
    156156    {
    157157        /* check the default value */
     
    159159    }
    160160    else
    161         fHWVirtExEnabled = (hwVirtExEnabled == TriStateBool_True);
     161        fHWVirtExEnabled = (hwVirtExEnabled == TriStateBool_TSTrue);
    162162#ifndef RT_OS_DARWIN /** @todo Implement HWVirtExt on darwin. See #1865. */
    163163    if (fHWVirtExEnabled)
  • trunk/src/VBox/Main/MachineImpl.cpp

    r6449 r6616  
    169169    mVRAMSize = 8;
    170170    mMonitorCount = 1;
    171     mHWVirtExEnabled = TriStateBool_False;
     171    mHWVirtExEnabled = TriStateBool_TSFalse;
    172172
    173173    /* default boot order: floppy - DVD - HDD */
     
    41414141    {
    41424142        /* default value in case the node is not there */
    4143         mHWData->mHWVirtExEnabled = TriStateBool_Default;
     4143        mHWData->mHWVirtExEnabled = TriStateBool_TSDefault;
    41444144
    41454145        Key cpuNode = aNode.findKey ("CPU");
     
    41514151                const char *enabled = hwVirtExNode.stringValue ("enabled");
    41524152                if      (strcmp (enabled, "false") == 0)
    4153                     mHWData->mHWVirtExEnabled = TriStateBool_False;
     4153                    mHWData->mHWVirtExEnabled = TriStateBool_TSFalse;
    41544154                else if (strcmp (enabled, "true") == 0)
    4155                     mHWData->mHWVirtExEnabled = TriStateBool_True;
     4155                    mHWData->mHWVirtExEnabled = TriStateBool_TSTrue;
    41564156                else
    4157                     mHWData->mHWVirtExEnabled = TriStateBool_Default;
     4157                    mHWData->mHWVirtExEnabled = TriStateBool_TSDefault;
    41584158            }
    41594159        }
     
    55295529        switch (mHWData->mHWVirtExEnabled)
    55305530        {
    5531             case TriStateBool_False:
     5531            case TriStateBool_TSFalse:
    55325532                value = "false";
    55335533                break;
    5534             case TriStateBool_True:
     5534            case TriStateBool_TSTrue:
    55355535                value = "true";
    55365536                break;
    5537             case TriStateBool_Default:
     5537            case TriStateBool_TSDefault:
    55385538                value = "default";
    55395539        }
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r6597 r6616  
    105105    </desc>
    106106
    107     <const name="False"   value="0"/>
    108     <const name="True"    value="1"/>
    109     <const name="Default" value="2"/>
     107    <const name="TSFalse"   value="0"/>
     108    <const name="TSTrue"    value="1"/>
     109    <const name="TSDefault" value="2"/>
    110110  </enum>
    111111
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