- Timestamp:
- Oct 25, 2021 2:14:13 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMNameOSTypePage.cpp
r91593 r92037 144 144 { QRegExp("Tur.*64", Qt::CaseInsensitive), "Turbolinux_64" }, 145 145 { QRegExp("Tur.*32", Qt::CaseInsensitive), "Turbolinux" }, 146 { QRegExp("( Ub)|(Min).*64",Qt::CaseInsensitive), "Ubuntu_64" },147 { QRegExp("( Ub)|(Min).*32",Qt::CaseInsensitive), "Ubuntu" },146 { QRegExp("((Ub)|(Mint)).*64", Qt::CaseInsensitive), "Ubuntu_64" }, 147 { QRegExp("((Ub)|(Mint)).*32", Qt::CaseInsensitive), "Ubuntu" }, 148 148 { QRegExp("Xa.*64", Qt::CaseInsensitive), "Xandros_64" }, 149 149 { QRegExp("Xa.*32", Qt::CaseInsensitive), "Xandros" }, … … 180 180 bool fSupportsLongMode = host.GetProcessorFeature(KProcessorFeature_LongMode); 181 181 182 /* Do not forget about achitecture bits, if not yet specified: */182 /* Append default architecture bit-count (64/32) if not already in the name: */ 183 183 if (!strNewName.contains("32") && !strNewName.contains("64")) 184 184 strNewName += ARCH_BITS == 64 && fSupportsHWVirtEx && fSupportsLongMode ? "64" : "32";
Note:
See TracChangeset
for help on using the changeset viewer.

