Changeset 25032 in vbox
- Timestamp:
- Nov 27, 2009 1:23:24 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestProperties/service.cpp
r24703 r25032 477 477 ++itEnd; 478 478 for (unsigned i = 0; ppNames[i] != NULL; ++i) 479 { 480 bool found = false; 481 for (PropertyList::iterator it = mProperties.begin(); 482 !found && it != itEnd; ++it) 479 for (PropertyList::iterator it = mProperties.begin(); it != itEnd; ++it) 483 480 if (it->mName.compare(ppNames[i]) == 0) 484 481 { 485 found = true;486 482 mProperties.erase(it); 483 break; 487 484 } 488 }489 485 } 490 486
Note:
See TracChangeset
for help on using the changeset viewer.