Changeset 50323 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Feb 5, 2014 10:20:04 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92045
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r49103 r50323 375 375 com::SafeArray<BSTR> aRefs; 376 376 com::SafeArray<BSTR> aOvfValues; 377 com::SafeArray<BSTR> aV boxValues;377 com::SafeArray<BSTR> aVBoxValues; 378 378 com::SafeArray<BSTR> aExtraConfigValues; 379 379 CHECK_ERROR_BREAK(aVirtualSystemDescriptions[i], … … 381 381 ComSafeArrayAsOutParam(aRefs), 382 382 ComSafeArrayAsOutParam(aOvfValues), 383 ComSafeArrayAsOutParam(aV boxValues),383 ComSafeArrayAsOutParam(aVBoxValues), 384 384 ComSafeArrayAsOutParam(aExtraConfigValues))); 385 385 … … 402 402 Utf8Str strOverride; 403 403 404 Bstr bstrFinalValue = aV boxValues[a];404 Bstr bstrFinalValue = aVBoxValues[a]; 405 405 406 406 bool fIgnoreThis = mapIgnoresMapsPerVsys[i][a]; … … 438 438 case VirtualSystemDescriptionType_Product: 439 439 RTPrintf("%2u: Product (ignored): %ls\n", 440 a, aV boxValues[a]);440 a, aVBoxValues[a]); 441 441 break; 442 442 443 443 case VirtualSystemDescriptionType_ProductUrl: 444 444 RTPrintf("%2u: ProductUrl (ignored): %ls\n", 445 a, aV boxValues[a]);445 a, aVBoxValues[a]); 446 446 break; 447 447 448 448 case VirtualSystemDescriptionType_Vendor: 449 449 RTPrintf("%2u: Vendor (ignored): %ls\n", 450 a, aV boxValues[a]);450 a, aVBoxValues[a]); 451 451 break; 452 452 453 453 case VirtualSystemDescriptionType_VendorUrl: 454 454 RTPrintf("%2u: VendorUrl (ignored): %ls\n", 455 a, aV boxValues[a]);455 a, aVBoxValues[a]); 456 456 break; 457 457 458 458 case VirtualSystemDescriptionType_Version: 459 459 RTPrintf("%2u: Version (ignored): %ls\n", 460 a, aV boxValues[a]);460 a, aVBoxValues[a]); 461 461 break; 462 462 … … 551 551 RTPrintf("%2u: IDE controller, type %ls -- disabled\n", 552 552 a, 553 aV boxValues[a]);553 aVBoxValues[a]); 554 554 aEnabled[a] = false; 555 555 } … … 558 558 "\n (disable with \"--vsys %u --unit %u --ignore\")\n", 559 559 a, 560 aV boxValues[a],560 aVBoxValues[a], 561 561 i, a); 562 562 break; … … 567 567 RTPrintf("%2u: SATA controller, type %ls -- disabled\n", 568 568 a, 569 aV boxValues[a]);569 aVBoxValues[a]); 570 570 aEnabled[a] = false; 571 571 } … … 574 574 "\n (disable with \"--vsys %u --unit %u --ignore\")\n", 575 575 a, 576 aV boxValues[a],576 aVBoxValues[a], 577 577 i, a); 578 578 break; … … 583 583 RTPrintf("%2u: SAS controller, type %ls -- disabled\n", 584 584 a, 585 aV boxValues[a]);585 aVBoxValues[a]); 586 586 aEnabled[a] = false; 587 587 } … … 590 590 "\n (disable with \"--vsys %u --unit %u --ignore\")\n", 591 591 a, 592 aV boxValues[a],592 aVBoxValues[a], 593 593 i, a); 594 594 break; … … 599 599 RTPrintf("%2u: SCSI controller, type %ls -- disabled\n", 600 600 a, 601 aV boxValues[a]);601 aVBoxValues[a]); 602 602 aEnabled[a] = false; 603 603 } … … 618 618 "\n disable with \"--vsys %u --unit %u --ignore\")\n", 619 619 a, 620 aV boxValues[a],620 aVBoxValues[a], 621 621 i, a, i, a); 622 622 } … … 672 672 a, 673 673 aOvfValues[a], 674 aV boxValues[a],674 aVBoxValues[a], 675 675 aExtraConfigValues[a]); 676 676 } … … 682 682 a, 683 683 aOvfValues[a], 684 aV boxValues[a],684 aVBoxValues[a], 685 685 aExtraConfigValues[a], 686 686 i, a, i, a); … … 718 718 a, 719 719 aOvfValues[a], 720 aV boxValues[a],720 aVBoxValues[a], 721 721 aExtraConfigValues[a]); 722 722 break;
Note:
See TracChangeset
for help on using the changeset viewer.