Changeset 44015 in vbox for trunk/src/VBox
- Timestamp:
- Dec 3, 2012 2:45:56 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82429
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsSet.cpp
r44014 r44015 35 35 , m_pStep(0) 36 36 , m_iStep(-1) 37 , m_iLastStep (-1)37 , m_iLastStepNumber(-1) 38 38 { 39 39 /* Add set to the parent group: */ … … 58 58 void UIGDetailsSet::configure(UIVMItem *pItem, const QStringList &settings, bool fFullSet) 59 59 { 60 /* Assign settings: */60 /* Remember passed arguments: */ 61 61 m_machine = pItem->machine(); 62 62 m_fFullSet = fFullSet; … … 70 70 71 71 /* Choose last-step number: */ 72 m_iLastStep = m_fFullSet ? DetailsElementType_Description : DetailsElementType_Preview;72 m_iLastStepNumber = m_fFullSet ? DetailsElementType_Description : DetailsElementType_Preview; 73 73 74 74 /* Fetch USB controller restrictions: */ … … 490 490 { 491 491 /* Step number feats the bounds: */ 492 if (m_iStep <= m_iLastStep )492 if (m_iStep <= m_iLastStepNumber) 493 493 { 494 494 /* Load details settings: */ -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsSet.h
r44013 r44015 117 117 UIPrepareStep *m_pStep; 118 118 int m_iStep; 119 int m_iLastStep ;119 int m_iLastStepNumber; 120 120 QString m_strSetId; 121 121 QStringList m_settings;
Note:
See TracChangeset
for help on using the changeset viewer.