Changeset 79656 in vbox for trunk/src/VBox
- Timestamp:
- Jul 10, 2019 8:21:59 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131964
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVM.cpp
r79580 r79656 34 34 , m_comVSD(comDescription) 35 35 , m_fFullWizard(m_comClient.isNull() || m_comVSD.isNull()) 36 , m_fFinalStepPrevented(false) 36 37 { 37 38 #ifndef VBOX_WS_MAC … … 122 123 do 123 124 { 125 /* Do nothing if prevented: */ 126 if (m_fFinalStepPrevented) 127 { 128 fResult = true; 129 break; 130 } 131 124 132 /* Acquire prepared client and description: */ 125 133 CCloudClient comClient = client(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVM.h
r79580 r79656 61 61 virtual void prepare() /* override */; 62 62 63 /** Sets whether the final step is @a fPrevented. */ 64 void setFinalStepPrevented(bool fPrevented) { m_fFinalStepPrevented = fPrevented; } 65 63 66 /** Defines Cloud @a comClient object. */ 64 67 void setClient(const CCloudClient &comClient) { m_comClient = comClient; } … … 98 101 /** Holds whether we want full wizard form or short one. */ 99 102 bool m_fFullWizard; 103 /** Holds whether the final step is prevented. */ 104 bool m_fFinalStepPrevented; 100 105 }; 101 106
Note:
See TracChangeset
for help on using the changeset viewer.