Changeset 100772 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Aug 1, 2023 5:34:48 PM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 158650
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r98103 r100772 712 712 RTPrintf(List::tr("Product: %ls\n"), bstr.raw()); 713 713 CHECK_ERROR_RET(flt, COMGETTER(SerialNumber)(bstr.asOutParam()), 1); 714 RTPrintf(List::tr("Serial Number: %ls\n\n"), bstr.raw()); 714 RTPrintf(List::tr("Serial Number: %ls\n"), bstr.raw()); 715 CHECK_ERROR_RET(flt, COMGETTER(Port)(bstr.asOutParam()), 1); 716 RTPrintf(List::tr("Port: %ls\n\n"), bstr.raw()); 715 717 } 716 718 } -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageUSB.cpp
r98103 r100772 455 455 if (!f.mManufacturer.isEmpty()) 456 456 CHECK_ERROR_BREAK(flt, COMSETTER(Manufacturer)(f.mManufacturer.raw())); 457 if (!f.mProduct.isEmpty()) 458 CHECK_ERROR_BREAK(flt, COMSETTER(Product)(f.mProduct.raw())); 457 459 if (!f.mPort.isEmpty()) 458 460 CHECK_ERROR_BREAK(flt, COMSETTER(Port)(f.mPort.raw())); … … 483 485 if (!f.mManufacturer.isEmpty()) 484 486 CHECK_ERROR_BREAK(flt, COMSETTER(Manufacturer)(f.mManufacturer.raw())); 487 if (!f.mProduct.isEmpty()) 488 CHECK_ERROR_BREAK(flt, COMSETTER(Product)(f.mProduct.raw())); 485 489 if (!f.mPort.isEmpty()) 486 490 CHECK_ERROR_BREAK(flt, COMSETTER(Port)(f.mPort.raw())); … … 517 521 if (!f.mManufacturer.isEmpty()) 518 522 CHECK_ERROR_BREAK(flt, COMSETTER(Manufacturer)(f.mManufacturer.raw())); 523 if (!f.mProduct.isEmpty()) 524 CHECK_ERROR_BREAK(flt, COMSETTER(Product)(f.mProduct.raw())); 519 525 if (!f.mPort.isEmpty()) 520 526 CHECK_ERROR_BREAK(flt, COMSETTER(Port)(f.mPort.raw())); … … 546 552 if (!f.mManufacturer.isEmpty()) 547 553 CHECK_ERROR_BREAK(flt, COMSETTER(Manufacturer)(f.mManufacturer.raw())); 554 if (!f.mProduct.isEmpty()) 555 CHECK_ERROR_BREAK(flt, COMSETTER(Product)(f.mProduct.raw())); 548 556 if (!f.mPort.isEmpty()) 549 557 CHECK_ERROR_BREAK(flt, COMSETTER(Port)(f.mPort.raw()));
Note:
See TracChangeset
for help on using the changeset viewer.