Changeset 90713 in vbox
- Timestamp:
- Aug 18, 2021 10:00:51 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 5 edited
-
manager/UIVirtualBoxManager.cpp (modified) (1 diff)
-
wizards/clonevm/UIWizardCloneVMPageBasic1.cpp (modified) (1 diff)
-
wizards/clonevm/UIWizardCloneVMPageExpert.cpp (modified) (2 diffs)
-
wizards/newvm/UIWizardNewVM.cpp (modified) (1 diff)
-
wizards/newvm/UIWizardNewVM.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManager.cpp
r90589 r90713 976 976 /* Use the "safe way" to open stack of Mac OS X Sheets: */ 977 977 QWidget *pWizardParent = windowManager().realParentWindow(this); 978 UISafePointerWizardNewVM pWizard = new UIWizardNewVM(pWizardParent, m_pWidget->fullGroupName() );978 UISafePointerWizardNewVM pWizard = new UIWizardNewVM(pWizardParent, m_pWidget->fullGroupName(), WizardMode_Auto, "gui-createvm"); 979 979 windowManager().registerNewParent(pWizard, pWizardParent); 980 980 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMPageBasic1.cpp
r90702 r90713 32 32 { 33 33 CVirtualBox vbox = uiCommon().virtualBox(); 34 QString strCloneFilePath = vbox.ComposeMachineFilename(strCloneName, strGroup, QString(), strFolderPath); 35 return QDir::toNativeSeparators(strCloneFilePath); 34 return QDir::toNativeSeparators(vbox.ComposeMachineFilename(strCloneName, strGroup, QString(), strFolderPath)); 36 35 } 37 36 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMPageExpert.cpp
r90702 r90713 137 137 cloneVMWizardPropertySet(CloneFilePath, 138 138 UIWizardCloneVMNamePage::composeCloneFilePath(strCloneName, m_strGroup, m_pNamePathGroupBox->clonePath())); 139 emit completeChanged(); 139 140 } 140 141 … … 144 145 cloneVMWizardPropertySet(CloneFilePath, 145 146 UIWizardCloneVMNamePage::composeCloneFilePath(m_pNamePathGroupBox->cloneName(), m_strGroup, strClonePath)); 147 emit completeChanged(); 146 148 } 147 149 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVM.cpp
r90356 r90713 52 52 53 53 UIWizardNewVM::UIWizardNewVM(QWidget *pParent, const QString &strMachineGroup /* = QString() */, 54 WizardMode enmMode /* = WizardMode_Auto */ )55 : UINativeWizard(pParent, WizardType_NewVM, enmMode )54 WizardMode enmMode /* = WizardMode_Auto */, const QString &strHelpHashtag /* = QString() */) 55 : UINativeWizard(pParent, WizardType_NewVM, enmMode, strHelpHashtag) 56 56 , m_strMachineGroup(strMachineGroup) 57 57 , m_iIDECount(0) -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVM.h
r90372 r90713 72 72 public: 73 73 74 UIWizardNewVM(QWidget *pParent, const QString &strMachineGroup = QString(), WizardMode enmMode = WizardMode_Auto); 74 UIWizardNewVM(QWidget *pParent, const QString &strMachineGroup = QString(), 75 WizardMode enmMode = WizardMode_Auto, const QString &strHelpHashtag = QString()); 75 76 bool isUnattendedEnabled() const; 76 77 void setDefaultUnattendedInstallData(const UIUnattendedInstallData &unattendedInstallData);
Note:
See TracChangeset
for help on using the changeset viewer.

