Changeset 23643 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Oct 9, 2009 12:23:32 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 53341
- Location:
- trunk/src/VBox/Main/xml
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r23600 r23643 1545 1545 { 1546 1546 pelmHwChild->getAttributeValue("enabled", hw.vrdpSettings.fEnabled); 1547 pelmHwChild->getAttributeValue("port", hw.vrdpSettings. ulPort);1547 pelmHwChild->getAttributeValue("port", hw.vrdpSettings.strPort); 1548 1548 pelmHwChild->getAttributeValue("netAddress", hw.vrdpSettings.strNetAddress); 1549 1549 … … 2357 2357 xml::ElementNode *pelmVRDP = pelmHardware->createChild("RemoteDisplay"); 2358 2358 pelmVRDP->setAttribute("enabled", hw.vrdpSettings.fEnabled); 2359 pelmVRDP->setAttribute("port", hw.vrdpSettings. ulPort);2359 pelmVRDP->setAttribute("port", hw.vrdpSettings.strPort); 2360 2360 if (hw.vrdpSettings.strNetAddress.length()) 2361 2361 pelmVRDP->setAttribute("netAddress", hw.vrdpSettings.strNetAddress); -
trunk/src/VBox/Main/xml/VirtualBox-settings-common.xsd
r23465 r23643 506 506 <xsd:complexType name="TRemoteDisplay"> 507 507 <xsd:attribute name="enabled" type="xsd:boolean" use="required"/> 508 <xsd:attribute name="port" type="xsd: unsignedInt" default="0"/>508 <xsd:attribute name="port" type="xsd:token" default="0"/> 509 509 <xsd:attribute name="netAddress" type="xsd:token" default=""/> 510 510 <xsd:attribute name="authType" type="TVRDPAuthType" default="Null"/>
Note:
See TracChangeset
for help on using the changeset viewer.