Changeset 18531 in vbox
- Timestamp:
- Mar 30, 2009 11:59:54 AM (15 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Main/ApplianceImpl.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r18530 r18531 368 368 static void convertCIMOSType2VBoxOSType(Utf8Str &strType, CIMOSType_T c, const Utf8Str &cStr) 369 369 { 370 /* First */370 /* First check if the type is other/other_64 */ 371 371 if (c == CIMOSType_CIMOS_Other) 372 372 { 373 373 for (size_t i=0; i < RT_ELEMENTS(g_osTypesPattern); ++i) 374 if (cStr.contains (g_osTypesPattern[i].pcszPattern ))374 if (cStr.contains (g_osTypesPattern[i].pcszPattern, Utf8Str::CaseInsensitive)) 375 375 { 376 376 strType = g_osTypesPattern[i].pcszVbox; … … 381 381 { 382 382 for (size_t i=0; i < RT_ELEMENTS(g_osTypesPattern64); ++i) 383 if (cStr.contains (g_osTypesPattern64[i].pcszPattern ))383 if (cStr.contains (g_osTypesPattern64[i].pcszPattern, Utf8Str::CaseInsensitive)) 384 384 { 385 385 strType = g_osTypesPattern64[i].pcszVbox;
Note:
See TracChangeset
for help on using the changeset viewer.

