Changeset 35149 in vbox
- Timestamp:
- Dec 15, 2010 4:33:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r35146 r35149 1035 1035 mdm.hdType == MediumType_MultiAttach ? "MultiAttach" : 1036 1036 "INVALID"; 1037 // no need to save the usual DVD medium types 1038 if (devType != DeviceType_DVD || ( mdm.hdType != MediumType_Normal 1039 && mdm.hdType != MediumType_Writethrough 1040 && mdm.hdType != MediumType_Readonly)) 1037 // no need to save the usual DVD/floppy medium types 1038 if ( ( devType != DeviceType_DVD 1039 || ( mdm.hdType != MediumType_Writethrough // shouldn't happen 1040 && mdm.hdType != MediumType_Readonly)) 1041 && ( devType != DeviceType_Floppy 1042 || mdm.hdType != MediumType_Writethrough)) 1041 1043 pelmMedium->setAttribute("type", pcszType); 1042 1044 }
Note:
See TracChangeset
for help on using the changeset viewer.