Changeset 101039 in vbox for trunk/src/VBox/Main
- Timestamp:
- Sep 7, 2023 9:27:50 AM (17 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r101035 r101039 1036 1036 Platform architecture. 1037 1037 <note> 1038 <para>This does not specify the CPU type. 1039 See <link to="CPUArchitecture"/> for more information.</para> 1038 This does not specify the CPU type. See <link to="CPUArchitecture"/> for more information. 1040 1039 </note> 1041 1040 </desc> -
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r101035 r101039 5244 5244 AssertComRC(hrc); 5245 5245 5246 ChipsetType_T chipsetType = ChipsetType_PIIX3; /** *@todo BUGBUG ASSUMES x86! */5246 ChipsetType_T chipsetType = ChipsetType_PIIX3; /** @todo BUGBUG ASSUMES x86! */ 5247 5247 pPlatform->COMGETTER(ChipsetType)(&chipsetType); 5248 5248 AssertComRC(hrc); … … 10680 10680 AssertComRC(hrc); 10681 10681 10682 ChipsetType_T chipsetType = ChipsetType_PIIX3; /** *@todo BUGBUG ASSUMES x86! */10682 ChipsetType_T chipsetType = ChipsetType_PIIX3; /** @todo BUGBUG ASSUMES x86! */ 10683 10683 pPlatform->COMGETTER(ChipsetType)(&chipsetType); 10684 10684 AssertComRC(hrc); -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r101035 r101039 6306 6306 if (FAILED(hrc)) return hrc; 6307 6307 6308 ChipsetType_T aChipset = ChipsetType_PIIX3; /** *@todo BUGBUG ASSUMES x86! */6308 ChipsetType_T aChipset = ChipsetType_PIIX3; /** @todo BUGBUG ASSUMES x86! */ 6309 6309 hrc = mPlatform->COMGETTER(ChipsetType)(&aChipset); 6310 6310 if (FAILED(hrc)) return hrc; 6311 6311 6312 if (aChipset != ChipsetType_ICH9) /** *@todo BUGBUG ASSUMES x86! */6312 if (aChipset != ChipsetType_ICH9) /** @todo BUGBUG ASSUMES x86! */ 6313 6313 { 6314 6314 return setError(E_INVALIDARG,
Note:
See TracChangeset
for help on using the changeset viewer.