- Timestamp:
- Apr 1, 2025 2:33:50 PM (2 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168258
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/networkmanager/UINetworkManager.cpp
r108591 r108812 1720 1720 { 1721 1721 /* Prepare self: */ 1722 uiCommon().setHelpKeyword(this, " network-manager" /* help keyword */);1722 uiCommon().setHelpKeyword(this, "config-network" /* help keyword */); 1723 1723 1724 1724 /* Prepare stuff: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVM.cpp
r108591 r108812 66 66 const QString &strMachineGroup, 67 67 const QString &strISOFilePath /* = QString() */) 68 : UINativeWizard(pParent, WizardType_NewVM, "create-vm -wizard" /* help keyword */)68 : UINativeWizard(pParent, WizardType_NewVM, "create-vm" /* help keyword */) 69 69 , m_strMachineGroup(strMachineGroup) 70 70 , m_iIDECount(0) … … 107 107 case WizardMode_Basic: 108 108 { 109 UIWizardNewVMNameOSTypePage *pNamePage = new UIWizardNewVMNameOSTypePage("create-vm- wizard-name-os" /* help keyword*/);109 UIWizardNewVMNameOSTypePage *pNamePage = new UIWizardNewVMNameOSTypePage("create-vm-name-os" /* help keyword*/); 110 110 addPage(pNamePage); 111 111 if (!m_strInitialISOFilePath.isEmpty()) 112 112 pNamePage->setISOFilePath(m_strInitialISOFilePath); 113 m_iUnattendedInstallPageIndex = addPage(new UIWizardNewVMUnattendedPage("create-vm- wizard-unattended-install" /* help keyword */));113 m_iUnattendedInstallPageIndex = addPage(new UIWizardNewVMUnattendedPage("create-vm-unattended-install" /* help keyword */)); 114 114 setUnattendedPageVisible(false); 115 addPage(new UIWizardNewVMHardwarePage("create-vm- wizard-hardware" /* help keyword*/));115 addPage(new UIWizardNewVMHardwarePage("create-vm-hardware" /* help keyword*/)); 116 116 addPage(new UIWizardNewVMSummaryPage); 117 117 break;
Note:
See TracChangeset
for help on using the changeset viewer.