- Timestamp:
- Jun 10, 2015 12:54:17 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r56180 r56338 1832 1832 /* Get recent-medium list: */ 1833 1833 QStringList recentMediumList; 1834 QStringList recentMediumListUsed; 1834 1835 switch (mediumType) 1835 1836 { … … 1842 1843 foreach (const QString &strRecentMediumLocationBase, recentMediumList) 1843 1844 { 1845 /* Confirm medium uniqueness: */ 1846 if (recentMediumListUsed.contains(strRecentMediumLocationBase)) 1847 continue; 1848 /* Mark medium as known: */ 1849 recentMediumListUsed << strRecentMediumLocationBase; 1844 1850 /* Convert separators to native: */ 1845 1851 const QString strRecentMediumLocation = QDir::toNativeSeparators(strRecentMediumLocationBase);
Note:
See TracChangeset
for help on using the changeset viewer.