VirtualBox

Changeset 21347 in vbox


Ignore:
Timestamp:
Jul 7, 2009 3:39:09 PM (15 years ago)
Author:
vboxsync
Message:

FE/Qt4: grrr

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxGuestRAMSlider.cpp

    r21345 r21347  
    101101
    102102    /* System RAM amount test */
    103     mMaxRAMAlw  = (uint)0.75 * fullSize;
    104     mMaxRAMOpt  = (uint)0.50 * fullSize;
     103    mMaxRAMAlw  = (uint)(0.75 * fullSize);
     104    mMaxRAMOpt  = (uint)(0.50 * fullSize);
    105105    if (fullSize < 3072)
    106106        /* done */;
    107107    else if (fullSize < 4096)   /* 3GB */
    108         mMaxRAMAlw = (uint)0.80 * fullSize;
     108        mMaxRAMAlw = (uint)(0.80 * fullSize);
    109109    else if (fullSize < 6144)   /* 4-5GB */
    110110    {
    111         mMaxRAMAlw = (uint)0.84 * fullSize;
    112         mMaxRAMOpt = (uint)0.60 * fullSize;
     111        mMaxRAMAlw = (uint)(0.84 * fullSize);
     112        mMaxRAMOpt = (uint)(0.60 * fullSize);
    113113    }
    114114    else if (fullSize < 8192)   /* 6-7GB */
    115115    {
    116         mMaxRAMAlw = (uint)0.88 * fullSize;
    117         mMaxRAMOpt = (uint)0.65 * fullSize;
     116        mMaxRAMAlw = (uint)(0.88 * fullSize);
     117        mMaxRAMOpt = (uint)(0.65 * fullSize);
    118118    }
    119119    else if (fullSize < 16384)  /* 8-15GB */
    120120    {
    121         mMaxRAMAlw = (uint)0.90 * fullSize;
    122         mMaxRAMOpt = (uint)0.70 * fullSize;
     121        mMaxRAMAlw = (uint)(0.90 * fullSize);
     122        mMaxRAMOpt = (uint)(0.70 * fullSize);
    123123    }
    124124    else if (fullSize < 32768)  /* 16-31GB */
    125125    {
    126         mMaxRAMAlw = (uint)0.93 * fullSize;
    127         mMaxRAMOpt = (uint)0.75 * fullSize;
     126        mMaxRAMAlw = (uint)(0.93 * fullSize);
     127        mMaxRAMOpt = (uint)(0.75 * fullSize);
    128128    }
    129129    else if (fullSize < 65536)  /* 32-63GB */
    130130    {
    131         mMaxRAMAlw = (uint)0.94 * fullSize;
    132         mMaxRAMOpt = (uint)0.80 * fullSize;
     131        mMaxRAMAlw = (uint)(0.94 * fullSize);
     132        mMaxRAMOpt = (uint)(0.80 * fullSize);
    133133    }
    134134    else if (fullSize < 131072) /* 64-127GB */
    135135    {
    136         mMaxRAMAlw = (uint)0.95 * fullSize;
    137         mMaxRAMOpt = (uint)0.85 * fullSize;
     136        mMaxRAMAlw = (uint)(0.95 * fullSize);
     137        mMaxRAMOpt = (uint)(0.85 * fullSize);
    138138    }
    139139    else                        /* 128GB- */
    140140    {
    141         mMaxRAMAlw = (uint)0.96 * fullSize;
    142         mMaxRAMOpt = (uint)0.90 * fullSize;
     141        mMaxRAMAlw = (uint)(0.96 * fullSize);
     142        mMaxRAMOpt = (uint)(0.90 * fullSize);
    143143    }
    144144
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