VirtualBox

Changeset 33073 in vbox for trunk/src


Ignore:
Timestamp:
Oct 12, 2010 3:02:53 PM (14 years ago)
Author:
vboxsync
Message:

Main: partly reverted r66582

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/glue/string.cpp

    r33055 r33073  
    5050#endif
    5151
    52 Utf8Str &Utf8Str::stripTrailingSlash()
     52Utf8Str& Utf8Str::stripTrailingSlash()
    5353{
    5454    if (length())
     
    6060}
    6161
    62 Utf8Str &Utf8Str::stripFilename()
     62Utf8Str& Utf8Str::stripFilename()
    6363{
    6464    if (length())
     
    7070}
    7171
    72 Utf8Str &Utf8Str::stripPath()
     72Utf8Str& Utf8Str::stripPath()
    7373{
    7474    if (length())
     
    8282}
    8383
    84 Utf8Str &Utf8Str::stripExt()
     84Utf8Str& Utf8Str::stripExt()
    8585{
    8686    if (length())
  • trunk/src/VBox/Main/xml/Settings.cpp

    r33055 r33073  
    661661        {
    662662            // pre-1.4 used lower case, so make this case-insensitive
    663             strType.upper();
     663            strType.toUpper();
    664664            if (strType == "NORMAL")
    665665                med.hdType = MediumType_Normal;
     
    21282128    {
    21292129        // settings before 1.3 used lower case so make sure this is case-insensitive
    2130         strTemp.upper();
     2130        strTemp.toUpper();
    21312131        if (strTemp == "NULL")
    21322132            aa.driverType = AudioDriverType_Null;
     
    24392439            {
    24402440                // settings before 1.3 used lower case so make sure this is case-insensitive
    2441                 strAuthType.upper();
     2441                strAuthType.toUpper();
    24422442                if (strAuthType == "NULL")
    24432443                    hw.vrdpSettings.authType = VRDPAuthType_Null;
     
    24822482                {
    24832483                    // settings before 1.3 used lower case so make sure this is case-insensitive
    2484                     strBootMenuMode.upper();
     2484                    strBootMenuMode.toUpper();
    24852485                    if (strBootMenuMode == "DISABLED")
    24862486                        hw.biosSettings.biosBootMenuMode = BIOSBootMenuMode_Disabled;
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