VirtualBox

Changeset 36527 in vbox for trunk/src/VBox/Main/src-server


Ignore:
Timestamp:
Apr 4, 2011 1:16:09 PM (14 years ago)
Author:
vboxsync
Message:

iprt::MiniString -> RTCString.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/Performance.cpp

    r36226 r36527  
    11/* $Id$ */
    2 
    32/** @file
    4  *
    53 * VBox Performance Classes implementation.
    64 */
     
    798796         pos = name.find(",", startPos))
    799797    {
    800         mElements.push_back(std::make_pair(object, iprt::MiniString(name.substr(startPos, pos - startPos).c_str())));
     798        mElements.push_back(std::make_pair(object, RTCString(name.substr(startPos, pos - startPos).c_str())));
    801799        startPos = pos + 1;
    802800    }
    803     mElements.push_back(std::make_pair(object, iprt::MiniString(name.substr(startPos).c_str())));
     801    mElements.push_back(std::make_pair(object, RTCString(name.substr(startPos).c_str())));
    804802}
    805803
     
    877875}
    878876
    879 bool Filter::match(const ComPtr<IUnknown> object, const iprt::MiniString &name) const
     877bool Filter::match(const ComPtr<IUnknown> object, const RTCString &name) const
    880878{
    881879    ElementList::const_iterator it;
Note: See TracChangeset for help on using the changeset viewer.

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