Changeset 7991 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 15, 2008 1:51:19 PM (17 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r7990 r7991 4297 4297 } 4298 4298 /* PAE (optional, default is false) */ 4299 mHWData->mPAEEnabled = cpuNode.value <BOOL> ("PAE"); 4299 Key PAENode = cpuNode.findKey ("PAE"); 4300 if (!PAENode.isNull()) 4301 { 4302 mHWData->mPAEEnabled = PAENode.value <bool> ("enabled"); 4303 } 4300 4304 } 4301 4305 } … … 5655 5659 break; 5656 5660 } 5657 cpuNode.setStringValue ("enabled", value);5661 hwVirtExNode.setStringValue ("enabled", value); 5658 5662 5659 5663 /* PAE (optional, default is false) */ 5660 cpuNode.setValue <BOOL> ("PAE", mHWData->mPAEEnabled); 5664 Key PAENode = cpuNode.createKey ("PAE"); 5665 PAENode.setValue <bool> ("enabled", mHWData->mPAEEnabled); 5661 5666 } 5662 5667 -
trunk/src/VBox/Main/xml/VirtualBox-settings-common.xsd
r7990 r7991 407 407 </xsd:complexType> 408 408 409 <xsd:complexType name="TPAEType"> 410 <xsd:attribute name="enabled" type="xsd:boolean" default="false"/> 411 </xsd:complexType> 412 409 413 <xsd:complexType name="TCPU"> 410 414 <xsd:sequence> 411 415 <xsd:element name="HardwareVirtEx" type="THWVirtExType" minOccurs="0"/> 412 <xsd:element name="PAE" type=" xsd:boolean" default="false"/>416 <xsd:element name="PAE" type="TPAEType" minOccurs="0"/> 413 417 </xsd:sequence> 414 418 </xsd:complexType>
Note:
See TracChangeset
for help on using the changeset viewer.