2012-10-02 16:03:09 +02:00
|
|
|
Index: src/VBox/Frontends/VirtualBox/src/widgets/UINameAndSystemEditor.cpp
|
|
|
|
===================================================================
|
|
|
|
--- src/VBox/Frontends/VirtualBox/src/widgets/UINameAndSystemEditor.cpp.orig
|
|
|
|
+++ src/VBox/Frontends/VirtualBox/src/widgets/UINameAndSystemEditor.cpp
|
|
|
|
@@ -198,14 +198,14 @@ void UINameAndSystemEditor::sltFamilyCha
|
|
|
|
{
|
|
|
|
int iIndexWinXP = m_pTypeCombo->findData("WindowsXP", TypeID);
|
|
|
|
if (iIndexWinXP != -1)
|
|
|
|
m_pTypeCombo->setCurrentIndex(iIndexWinXP);
|
2010-12-23 11:08:49 +01:00
|
|
|
}
|
2012-10-02 16:03:09 +02:00
|
|
|
- /* Or select Ubuntu item for Linux family as default: */
|
|
|
|
+ /* Or select OpenSUSE item for Linux family as default: */
|
|
|
|
else if (strFamilyId == "Linux")
|
2010-12-23 11:08:49 +01:00
|
|
|
{
|
2012-10-02 16:03:09 +02:00
|
|
|
- int iIndexUbuntu = m_pTypeCombo->findData("Ubuntu", TypeID);
|
|
|
|
+ int iIndexUbuntu = m_pTypeCombo->findData("OpenSUSE", TypeID);
|
|
|
|
if (iIndexUbuntu != -1)
|
|
|
|
m_pTypeCombo->setCurrentIndex(iIndexUbuntu);
|
2010-12-23 11:08:49 +01:00
|
|
|
}
|
2012-10-02 16:03:09 +02:00
|
|
|
/* Else simply select the first one present: */
|
|
|
|
else m_pTypeCombo->setCurrentIndex(0);
|