Changeset 48879 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Oct 4, 2013 8:37:50 AM (11 years ago)
- Location:
- trunk/src/VBox/Main/xml
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r48538 r48879 2022 2022 && (fNonRotational == a.fNonRotational) 2023 2023 && (fDiscard == a.fDiscard) 2024 && (fHotPluggable == a.fHotPluggable) 2024 2025 && (lPort == a.lPort) 2025 2026 && (lDevice == a.lDevice) … … 3489 3490 throw ConfigFileError(this, pelmImage, N_("Required AttachedDevice/@device attribute is missing")); 3490 3491 3492 pelmAttached->getAttributeValue("hotpluggable", att.fHotPluggable); 3491 3493 pelmAttached->getAttributeValue("bandwidthGroup", att.strBwGroup); 3492 3494 sctl.llAttachedDevices.push_back(att); … … 4918 4920 pelmDevice->setAttribute("type", pcszType); 4919 4921 4922 if (att.fHotPluggable) 4923 pelmDevice->setAttribute("hotpluggable", att.fHotPluggable); 4924 4920 4925 pelmDevice->setAttribute("port", att.lPort); 4921 4926 pelmDevice->setAttribute("device", att.lDevice); -
trunk/src/VBox/Main/xml/VirtualBox-settings.xsd
r44948 r48879 626 626 <xsd:attribute name="nonrotational" type="xsd:boolean" default="false"/> 627 627 <xsd:attribute name="discard" type="xsd:boolean" default="false"/> 628 <xsd:attribute name="hotpluggable" type="xsd:boolean" default="false"/> 628 629 </xsd:complexType> 629 630
Note:
See TracChangeset
for help on using the changeset viewer.