Changeset 48781 in vbox for trunk/src/VBox/Runtime/r3/xml.cpp
- Timestamp:
- Oct 1, 2013 2:43:59 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89419
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/xml.cpp
r48779 r48781 472 472 #ifndef USE_STD_LIST_FOR_CHILDREN 473 473 Node *pCur, *pNext; 474 RTListForEachSafe (&m_children, pCur, pNext, Node, m_childEntry)474 RTListForEachSafeCpp(&m_children, pCur, pNext, Node, m_childEntry) 475 475 { 476 476 delete pCur; … … 764 764 #ifndef USE_STD_LIST_FOR_CHILDREN 765 765 Node *p; 766 RTListForEach (&m_children, p, Node, m_childEntry)766 RTListForEachCpp(&m_children, p, Node, m_childEntry) 767 767 #else 768 768 for (Data::InternalNodesList::iterator it = m->children.begin(); … … 798 798 #ifndef USE_STD_LIST_FOR_CHILDREN 799 799 Node *p; 800 RTListForEach (&m_children, p, Node, m_childEntry)800 RTListForEachCpp(&m_children, p, Node, m_childEntry) 801 801 { 802 802 if (p->isElement()) … … 832 832 #ifndef USE_STD_LIST_FOR_CHILDREN 833 833 Node *p; 834 RTListForEach (&m_children, p, Node, m_childEntry)834 RTListForEachCpp(&m_children, p, Node, m_childEntry) 835 835 { 836 836 if (p->isElement()) … … 882 882 * pointers in this variant. */ 883 883 Node *p; 884 RTListForEach (&m_children, p, Node, m_childEntry)884 RTListForEachCpp(&m_children, p, Node, m_childEntry) 885 885 { 886 886 if (p->isElement())
Note:
See TracChangeset
for help on using the changeset viewer.