Changeset 33322 in vbox
- Timestamp:
- Oct 21, 2010 5:14:44 PM (14 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r33300 r33322 128 128 case MediumType_Shareable: 129 129 typeStr = "shareable"; 130 break; 131 case MediumType_Readonly: 132 typeStr = "readonly"; 130 133 break; 131 134 } -
trunk/src/VBox/Main/MediumImpl.cpp
r33307 r33322 1027 1027 rc = setLocation(aLocation); 1028 1028 else 1029 { 1030 if (aDeviceType == DeviceType_DVD) 1031 m->type = MediumType_Readonly; 1032 else 1033 m->type = MediumType_Writethrough; 1029 1034 rc = setLocation(aLocation, "RAW"); 1035 } 1030 1036 if (FAILED(rc)) return rc; 1031 1037
Note:
See TracChangeset
for help on using the changeset viewer.