- Timestamp:
- Feb 1, 2011 8:44:46 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r35761 r35801 390 390 dvdDrive->COMGETTER(Id)(uuid.asOutParam()); 391 391 RTPrintf("UUID: %s\n", Utf8Str(uuid).c_str()); 392 Bstr name;393 dvdDrive->COMGETTER( Name)(name.asOutParam());394 RTPrintf("Name: %lS\n\n", name.raw());392 Bstr location; 393 dvdDrive->COMGETTER(Location)(location.asOutParam()); 394 RTPrintf("Name: %lS\n\n", location.raw()); 395 395 } 396 396 } … … 412 412 floppyDrive->COMGETTER(Id)(uuid.asOutParam()); 413 413 RTPrintf("UUID: %s\n", Utf8Str(uuid).c_str()); 414 Bstr name;415 floppyDrive->COMGETTER( Name)(name.asOutParam());416 RTPrintf("Name: %lS\n\n", name.raw());414 Bstr location; 415 floppyDrive->COMGETTER(Location)(location.asOutParam()); 416 RTPrintf("Name: %lS\n\n", location.raw()); 417 417 } 418 418 }
Note:
See TracChangeset
for help on using the changeset viewer.