Changeset 90620 in vbox
- Timestamp:
- Aug 11, 2021 7:51:02 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/networking/UIUpdateManager.cpp
r90606 r90620 95 95 if (UINotificationNewVersionCheckerVirtualBox::exists()) 96 96 { 97 // @todo show notification-center97 /// @todo show notification-center 98 98 emit sigStepFinished(); 99 99 return; -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVM.h
r90619 r90620 44 44 void setCloneModePageVisible(bool fIsFullClone); 45 45 bool isCloneModePageVisible() const; 46 /* CLone VM stuff: */ 47 bool cloneVM(); 46 48 47 49 protected: 48 50 49 /* CLone VM stuff: */50 bool cloneVM();51 51 virtual void populatePages() /* final override */; 52 52 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMPageBasic2.cpp
r90619 r90620 108 108 bool UIWizardCloneVMPageBasic2::validatePage() 109 109 { 110 UIWizardCloneVM *pWizard = qobject_cast<UIWizardCloneVM*>(wizard()); 111 AssertReturn(pWizard, false); 112 110 113 /* This page could be final: */ 111 // if (isFinalPage())112 //{113 ///* Initial result: */114 //bool fResult = true;114 if (!pWizard->isCloneModePageVisible()) 115 { 116 /* Initial result: */ 117 bool fResult = true; 115 118 116 // /* Lock finish button: */117 // startProcessing();119 /* Trying to clone VM: */ 120 fResult = pWizard->cloneVM(); 118 121 119 // /* Trying to clone VM: */ 120 // if (fResult) 121 // fResult = qobject_cast<UIWizardCloneVM*>(wizard())->cloneVM(); 122 123 // /* Unlock finish button: */ 124 // endProcessing(); 125 126 // /* Return result: */ 127 // return fResult; 128 // } 129 // else 122 /* Return result: */ 123 return fResult; 124 } 125 else 130 126 return true; 131 127 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardCloneVMEditors.cpp
r90617 r90620 50 50 51 51 /********************************************************************************************************************************* 52 53 52 * UICloneVMNamePathEditor implementation. * 53 *********************************************************************************************************************************/ 54 54 55 55 UICloneVMNamePathEditor::UICloneVMNamePathEditor(const QString &strOriginalName, const QString &strDefaultPath, QWidget *pParent /* = 0 */) … … 131 131 132 132 /********************************************************************************************************************************* 133 134 133 * UICloneVMAdditionalOptionsEditor implementation. * 134 *********************************************************************************************************************************/ 135 135 136 136 … … 306 306 } 307 307 308 308 309 /********************************************************************************************************************************* 309 310 310 * UICloneVMAdditionalOptionsEditor implementation. * 311 *********************************************************************************************************************************/ 311 312 312 313 UICloneVMCloneTypeGroupBox::UICloneVMCloneTypeGroupBox(QWidget *pParent /* = 0 */) … … 374 375 } 375 376 377 376 378 /********************************************************************************************************************************* 377 378 379 * UICloneVMAdditionalOptionsEditor implementation. * 380 *********************************************************************************************************************************/ 379 381 380 382 UICloneVMCloneModeGroupBox::UICloneVMCloneModeGroupBox(bool fShowChildsOption, QWidget *pParent /* = 0 */)
Note:
See TracChangeset
for help on using the changeset viewer.