Changeset 14388 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- Nov 20, 2008 9:20:16 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39611
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r14382 r14388 2844 2844 2845 2845 MediaEnumThread (VBoxMediaList &aList) 2846 : mSavedIt (aList.begin()) 2847 { 2846 : mVector (aList.size()) 2847 , mSavedIt (aList.begin()) 2848 { 2849 int i = 0; 2848 2850 for (VBoxMediaList::const_iterator it = aList.begin(); 2849 2851 it != aList.end(); ++ it) 2850 mVector .append (*it);2852 mVector [i ++] = *it; 2851 2853 } 2852 2854
Note:
See TracChangeset
for help on using the changeset viewer.