Changeset 31481 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Aug 9, 2010 12:33:59 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64563
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r31472 r31481 477 477 */ 478 478 void ConfigFileBase::readExtraData(const xml::ElementNode &elmExtraData, 479 ExtraDataItemsMap &map)479 StringsMap &map) 480 480 { 481 481 xml::NodesLoop nlLevel4(elmExtraData); … … 894 894 */ 895 895 void ConfigFileBase::buildExtraData(xml::ElementNode &elmParent, 896 const ExtraDataItemsMap &me)896 const StringsMap &me) 897 897 { 898 898 if (me.size()) 899 899 { 900 900 xml::ElementNode *pelmExtraData = elmParent.createChild("ExtraData"); 901 for ( ExtraDataItemsMap::const_iterator it = me.begin();901 for (StringsMap::const_iterator it = me.begin(); 902 902 it != me.end(); 903 903 ++it) … … 992 992 pelmHardDisk->setAttribute("Description", mdm.strDescription); 993 993 994 for ( PropertiesMap::const_iterator it = mdm.properties.begin();994 for (StringsMap::const_iterator it = mdm.properties.begin(); 995 995 it != mdm.properties.end(); 996 996 ++it)
Note:
See TracChangeset
for help on using the changeset viewer.