Changeset 101134 in vbox
- Timestamp:
- Sep 15, 2023 4:27:25 PM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 159107
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/editors
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIAudioControllerEditor.cpp
r101035 r101134 147 147 148 148 /* Load currently supported audio driver types: */ 149 #ifdef VBOX_WITH_VIRT_ARMV8 /** @todo BUGBUG Quick'n dirty fix to make it run on ARM. Needs proper fixing / re-structuring. */ 150 CPlatformProperties comProperties = uiCommon().virtualBox().GetPlatformProperties(KPlatformArchitecture_ARM); 151 #else 149 152 CPlatformProperties comProperties = uiCommon().virtualBox().GetPlatformProperties(KPlatformArchitecture_x86); 153 #endif 150 154 m_supportedValues = comProperties.GetSupportedAudioControllerTypes(); 151 155 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIGraphicsControllerEditor.cpp
r101035 r101134 156 156 157 157 /* Load currently supported graphics controller types: */ 158 #ifdef VBOX_WITH_VIRT_ARMV8 /** @todo BUGBUG Quick'n dirty fix to make it run on ARM. Needs proper fixing / re-structuring. */ 159 CPlatformProperties comProperties = uiCommon().virtualBox().GetPlatformProperties(KPlatformArchitecture_ARM); 160 #else 158 161 CPlatformProperties comProperties = uiCommon().virtualBox().GetPlatformProperties(KPlatformArchitecture_x86); 162 #endif 159 163 m_supportedValues = comProperties.GetSupportedGraphicsControllerTypes(); 160 164 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINetworkFeaturesEditor.cpp
r101035 r101134 465 465 466 466 /* Load currently supported types: */ 467 #ifdef VBOX_WITH_VIRT_ARMV8 /** @todo BUGBUG Quick'n dirty fix to make it run on ARM. Needs proper fixing / re-structuring. */ 468 CPlatformProperties comProperties = uiCommon().virtualBox().GetPlatformProperties(KPlatformArchitecture_ARM); 469 #else 467 470 CPlatformProperties comProperties = uiCommon().virtualBox().GetPlatformProperties(KPlatformArchitecture_x86); 471 #endif 468 472 QVector<KNetworkAdapterType> supportedTypes = comProperties.GetSupportedNetworkAdapterTypes(); 469 473
Note:
See TracChangeset
for help on using the changeset viewer.