Changeset 56012 in vbox
- Timestamp:
- May 21, 2015 4:56:59 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserItemMachine.cpp
r55985 r56012 161 161 /* Get the iterated machine-item: */ 162 162 UIGChooserItemMachine *pMachineItem = pItem->toMachineItem(); 163 /* Skip if this item is already enumerated but we need unique: */ 163 /* Skip if exactly this item is already enumerated: */ 164 if (ol.contains(pMachineItem)) 165 continue; 166 /* Skip if item with same ID is already enumerated but we need unique: */ 164 167 if ((iEnumerationFlags & UIGChooserItemMachineEnumerationFlag_Unique) && 165 168 contains(ol, pMachineItem)) 166 169 continue; 167 /* Skip if th s item is accessible and we no need it: */170 /* Skip if this item is accessible and we no need it: */ 168 171 if ((iEnumerationFlags & UIGChooserItemMachineEnumerationFlag_Inaccessible) && 169 172 pMachineItem->accessible())
Note:
See TracChangeset
for help on using the changeset viewer.