VirtualBox

Changeset 36527 in vbox for trunk/src/VBox/Runtime/r3


Ignore:
Timestamp:
Apr 4, 2011 1:16:09 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
70949
Message:

iprt::MiniString -> RTCString.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/xml.cpp

    r36523 r36527  
    175175    { }
    176176
    177     iprt::MiniString strFileName;
     177    RTCString strFileName;
    178178    RTFILE handle;
    179179    bool opened : 1;
     
    825825 * @return TRUE if attribute was found and str was thus updated.
    826826 */
    827 bool ElementNode::getAttributeValue(const char *pcszMatch, iprt::MiniString &str) const
     827bool ElementNode::getAttributeValue(const char *pcszMatch, RTCString &str) const
    828828{
    829829    const Node* pAttr;
     
    844844 * @return
    845845 */
    846 bool ElementNode::getAttributeValuePath(const char *pcszMatch, iprt::MiniString &str) const
     846bool ElementNode::getAttributeValuePath(const char *pcszMatch, RTCString &str) const
    847847{
    848848    if (getAttributeValue(pcszMatch, str))
     
    10781078 * @return
    10791079 */
    1080 AttributeNode* ElementNode::setAttributePath(const char *pcszName, const iprt::MiniString &strValue)
    1081 {
    1082     iprt::MiniString strTemp(strValue);
     1080AttributeNode* ElementNode::setAttributePath(const char *pcszName, const RTCString &strValue)
     1081{
     1082    RTCString strTemp(strValue);
    10831083    strTemp.findReplace('\\', '/');
    10841084    return setAttribute(pcszName, strTemp.c_str());
     
    14821482 */
    14831483void XmlMemParser::read(const void* pvBuf, size_t cbSize,
    1484                         const iprt::MiniString &strFilename,
     1484                        const RTCString &strFilename,
    14851485                        Document &doc)
    14861486{
     
    15401540struct XmlFileParser::Data
    15411541{
    1542     iprt::MiniString strXmlFilename;
     1542    RTCString strXmlFilename;
    15431543
    15441544    Data()
     
    15661566{
    15671567    File file;
    1568     iprt::MiniString error;
     1568    RTCString error;
    15691569
    15701570    IOContext(const char *pcszFilename, File::Mode mode, bool fFlush = false)
     
    16091609 * @param doc out: document to be reset and filled with data according to file contents.
    16101610 */
    1611 void XmlFileParser::read(const iprt::MiniString &strFilename,
     1611void XmlFileParser::read(const RTCString &strFilename,
    16121612                         Document &doc)
    16131613{
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette