forked from pool/virtualbox
60e90398d1
- update to 4.2.0 - rebase patches - remove kernel-3.6 patch, no longer needed OBS-URL: https://build.opensuse.org/request/show/136607 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=102
22 lines
1.0 KiB
Diff
22 lines
1.0 KiB
Diff
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);
|
|
}
|
|
- /* Or select Ubuntu item for Linux family as default: */
|
|
+ /* Or select OpenSUSE item for Linux family as default: */
|
|
else if (strFamilyId == "Linux")
|
|
{
|
|
- int iIndexUbuntu = m_pTypeCombo->findData("Ubuntu", TypeID);
|
|
+ int iIndexUbuntu = m_pTypeCombo->findData("OpenSUSE", TypeID);
|
|
if (iIndexUbuntu != -1)
|
|
m_pTypeCombo->setCurrentIndex(iIndexUbuntu);
|
|
}
|
|
/* Else simply select the first one present: */
|
|
else m_pTypeCombo->setCurrentIndex(0);
|