Changeset 36527 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Apr 4, 2011 1:16:09 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70949
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/xml.cpp
r36523 r36527 175 175 { } 176 176 177 iprt::MiniString strFileName;177 RTCString strFileName; 178 178 RTFILE handle; 179 179 bool opened : 1; … … 825 825 * @return TRUE if attribute was found and str was thus updated. 826 826 */ 827 bool ElementNode::getAttributeValue(const char *pcszMatch, iprt::MiniString &str) const827 bool ElementNode::getAttributeValue(const char *pcszMatch, RTCString &str) const 828 828 { 829 829 const Node* pAttr; … … 844 844 * @return 845 845 */ 846 bool ElementNode::getAttributeValuePath(const char *pcszMatch, iprt::MiniString &str) const846 bool ElementNode::getAttributeValuePath(const char *pcszMatch, RTCString &str) const 847 847 { 848 848 if (getAttributeValue(pcszMatch, str)) … … 1078 1078 * @return 1079 1079 */ 1080 AttributeNode* ElementNode::setAttributePath(const char *pcszName, const iprt::MiniString &strValue)1081 { 1082 iprt::MiniString strTemp(strValue);1080 AttributeNode* ElementNode::setAttributePath(const char *pcszName, const RTCString &strValue) 1081 { 1082 RTCString strTemp(strValue); 1083 1083 strTemp.findReplace('\\', '/'); 1084 1084 return setAttribute(pcszName, strTemp.c_str()); … … 1482 1482 */ 1483 1483 void XmlMemParser::read(const void* pvBuf, size_t cbSize, 1484 const iprt::MiniString &strFilename,1484 const RTCString &strFilename, 1485 1485 Document &doc) 1486 1486 { … … 1540 1540 struct XmlFileParser::Data 1541 1541 { 1542 iprt::MiniString strXmlFilename;1542 RTCString strXmlFilename; 1543 1543 1544 1544 Data() … … 1566 1566 { 1567 1567 File file; 1568 iprt::MiniString error;1568 RTCString error; 1569 1569 1570 1570 IOContext(const char *pcszFilename, File::Mode mode, bool fFlush = false) … … 1609 1609 * @param doc out: document to be reset and filled with data according to file contents. 1610 1610 */ 1611 void XmlFileParser::read(const iprt::MiniString &strFilename,1611 void XmlFileParser::read(const RTCString &strFilename, 1612 1612 Document &doc) 1613 1613 {
Note:
See TracChangeset
for help on using the changeset viewer.