- Timestamp:
- Oct 12, 2010 3:02:53 PM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/string.cpp
r33055 r33073 50 50 #endif 51 51 52 Utf8Str &Utf8Str::stripTrailingSlash()52 Utf8Str& Utf8Str::stripTrailingSlash() 53 53 { 54 54 if (length()) … … 60 60 } 61 61 62 Utf8Str &Utf8Str::stripFilename()62 Utf8Str& Utf8Str::stripFilename() 63 63 { 64 64 if (length()) … … 70 70 } 71 71 72 Utf8Str &Utf8Str::stripPath()72 Utf8Str& Utf8Str::stripPath() 73 73 { 74 74 if (length()) … … 82 82 } 83 83 84 Utf8Str &Utf8Str::stripExt()84 Utf8Str& Utf8Str::stripExt() 85 85 { 86 86 if (length()) -
trunk/src/VBox/Main/xml/Settings.cpp
r33055 r33073 661 661 { 662 662 // pre-1.4 used lower case, so make this case-insensitive 663 strType. upper();663 strType.toUpper(); 664 664 if (strType == "NORMAL") 665 665 med.hdType = MediumType_Normal; … … 2128 2128 { 2129 2129 // settings before 1.3 used lower case so make sure this is case-insensitive 2130 strTemp. upper();2130 strTemp.toUpper(); 2131 2131 if (strTemp == "NULL") 2132 2132 aa.driverType = AudioDriverType_Null; … … 2439 2439 { 2440 2440 // settings before 1.3 used lower case so make sure this is case-insensitive 2441 strAuthType. upper();2441 strAuthType.toUpper(); 2442 2442 if (strAuthType == "NULL") 2443 2443 hw.vrdpSettings.authType = VRDPAuthType_Null; … … 2482 2482 { 2483 2483 // settings before 1.3 used lower case so make sure this is case-insensitive 2484 strBootMenuMode. upper();2484 strBootMenuMode.toUpper(); 2485 2485 if (strBootMenuMode == "DISABLED") 2486 2486 hw.biosSettings.biosBootMenuMode = BIOSBootMenuMode_Disabled;
Note:
See TracChangeset
for help on using the changeset viewer.