Changeset 27797 in vbox for trunk/src/VBox/Main/HostImpl.cpp
- Timestamp:
- Mar 29, 2010 4:09:43 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59454
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HostImpl.cpp
r27796 r27797 5 5 6 6 /* 7 * Copyright (C) 2006-20 09Sun Microsystems, Inc.7 * Copyright (C) 2006-2010 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1197 1197 1198 1198 /* iterate to the position... */ 1199 USBDeviceFilterList::iterator it = m->llUSBDeviceFilters.begin();1200 std::advance (it, aPosition);1199 USBDeviceFilterList::iterator itPos = m->llUSBDeviceFilters.begin(); 1200 std::advance(itPos, aPosition); 1201 1201 /* ...and insert */ 1202 m->llUSBDeviceFilters.insert(it , pFilter);1202 m->llUSBDeviceFilters.insert(itPos, pFilter); 1203 1203 pFilter->mInList = true; 1204 1204
Note:
See TracChangeset
for help on using the changeset viewer.