Changeset 37709 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Jun 30, 2011 1:51:51 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72570
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r37606 r37709 1691 1691 || ( (deviceType == a.deviceType) 1692 1692 && (fPassThrough == a.fPassThrough) 1693 && (fTempEject == a.fTempEject) 1693 1694 && (lPort == a.lPort) 1694 1695 && (lDevice == a.lDevice) … … 2991 2992 att.deviceType = DeviceType_DVD; 2992 2993 pelmAttached->getAttributeValue("passthrough", att.fPassThrough); 2994 pelmAttached->getAttributeValue("tempeject", att.fTempEject); 2993 2995 } 2994 2996 else if (strTemp == "Floppy") … … 3062 3064 att.lDevice = 0; 3063 3065 pelmHwChild->getAttributeValue("passthrough", att.fPassThrough); 3066 pelmHwChild->getAttributeValue("tempeject", att.fTempEject); 3064 3067 3065 3068 const xml::ElementNode *pDriveChild; … … 3685 3688 3686 3689 pelmDVD->setAttribute("passthrough", att.fPassThrough); 3690 if (att.fTempEject) 3691 pelmDVD->setAttribute("tempeject", att.fTempEject); 3687 3692 if (!att.uuid.isEmpty()) 3688 3693 pelmDVD->createChild("Image")->setAttribute("uuid", att.uuid.toStringCurly()); … … 4229 4234 pcszType = "DVD"; 4230 4235 pelmDevice->setAttribute("passthrough", att.fPassThrough); 4236 if (att.fTempEject) 4237 pelmDevice->setAttribute("tempeject", att.fTempEject); 4231 4238 break; 4232 4239
Note:
See TracChangeset
for help on using the changeset viewer.