- Timestamp:
- Oct 21, 2008 4:10:22 PM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r13451 r13453 5212 5212 mHWData->mGuestProperties.push_back(property); 5213 5213 } 5214 notificationPatterns = guestPropertiesNode.stringValue (" NotificationPatterns");5214 notificationPatterns = guestPropertiesNode.stringValue ("notificationPatterns"); 5215 5215 } 5216 5216 mHWData->mPropertyServiceActive = false; … … 6601 6601 propertyNode.setValue <Bstr> ("flags", Bstr(szFlags)); 6602 6602 } 6603 guestPropertiesNode.setValue <Bstr> ("NotificationPatterns", 6604 mHWData->mGuestPropertyNotificationPatterns); 6603 guestPropertiesNode.setValueOr <Bstr> ("notificationPatterns", 6604 mHWData->mGuestPropertyNotificationPatterns, 6605 Bstr ("")); 6605 6606 } 6606 6607 #endif /* VBOX_WITH_GUEST_PROPS defined */ -
trunk/src/VBox/Main/xml/VirtualBox-settings-common.xsd
r13450 r13453 701 701 702 702 <xsd:complexType name="TGuestProperties"> 703 <xsd:sequence> 704 <xsd:element name="GuestProperty" type="TGuestProperty" minOccurs="0" maxOccurs="unbounded"/> 705 </xsd:sequence> 703 706 <xsd:attribute name="notificationPatterns" type="xsd:string" default=""/> 704 <xsd:sequence>705 <xsd:element name="GuestProperty" type="TGuestProperty" minOccurs="0" maxOccurs="unbounded"/>706 </xsd:sequence>707 707 </xsd:complexType> 708 708
Note:
See TracChangeset
for help on using the changeset viewer.