Changeset 36527 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Apr 4, 2011 1:16:09 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/Performance.cpp
r36226 r36527 1 1 /* $Id$ */ 2 3 2 /** @file 4 *5 3 * VBox Performance Classes implementation. 6 4 */ … … 798 796 pos = name.find(",", startPos)) 799 797 { 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()))); 801 799 startPos = pos + 1; 802 800 } 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()))); 804 802 } 805 803 … … 877 875 } 878 876 879 bool Filter::match(const ComPtr<IUnknown> object, const iprt::MiniString &name) const877 bool Filter::match(const ComPtr<IUnknown> object, const RTCString &name) const 880 878 { 881 879 ElementList::const_iterator it;
Note:
See TracChangeset
for help on using the changeset viewer.