Changeset 44012 in vbox
- Timestamp:
- Dec 3, 2012 2:11:39 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsGroup.cpp
r44011 r44012 42 42 void UIGDetailsGroup::setItems(const QList<UIVMItem*> &machineItems) 43 43 { 44 /* Remember newitems: */44 /* Remember passed machine-items: */ 45 45 m_machineItems = machineItems; 46 46 47 /* Cleanup superflous sets: */47 /* Cleanup superflous items: */ 48 48 while (m_items.size() > m_machineItems.size()) 49 49 delete m_items.last(); … … 58 58 loadSettings(); 59 59 60 /* Clea rstep: */60 /* Cleanup step: */ 61 61 delete m_pStep; 62 62 m_pStep = 0; … … 65 65 m_strGroupId = QUuid::createUuid().toString(); 66 66 67 /* Prepare first set: */67 /* Request to prepare first set: */ 68 68 emit sigStartFirstStep(m_strGroupId); 69 69 } … … 77 77 void UIGDetailsGroup::sltFirstStep(QString strGroupId) 78 78 { 79 /* Clea rstep: */79 /* Cleanup step: */ 80 80 delete m_pStep; 81 81 m_pStep = 0; … … 92 92 void UIGDetailsGroup::sltNextStep(QString strGroupId) 93 93 { 94 /* Clea rstep: */94 /* Cleanup step: */ 95 95 delete m_pStep; 96 96 m_pStep = 0;
Note:
See TracChangeset
for help on using the changeset viewer.