Changeset 87621 in vbox
- Timestamp:
- Feb 5, 2021 8:31:08 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142656
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIToolBox.cpp
r87414 r87621 279 279 if (m_pages.contains(iIndex)) 280 280 return false; 281 282 /* Remove the stretch from the end of the layout: */ 283 QLayoutItem *pItem = m_pMainLayout->takeAt(m_pMainLayout->count() - 1); 284 delete pItem; 285 281 286 ++m_iPageCount; 282 287 UIToolBoxPage *pNewPage = new UIToolBoxPage(fAddEnableCheckBox, 0);; … … 308 313 iTotalTitleHeight + 309 314 iMaxPageHeight); 310 315 /* Add stretch at the end: */ 316 m_pMainLayout->addStretch(); 311 317 return iIndex; 312 318 } … … 354 360 m_pMainLayout = new QVBoxLayout(this); 355 361 m_pMainLayout->addStretch(); 356 //m_pMainLayout->setContentsMargins(0, 0, 0, 0);357 362 358 363 retranslateUi(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic3.cpp
r87612 r87621 64 64 if (m_pEFICheckBox) 65 65 { 66 m_pEFICheckBox->setText(UIWizardNewVM::tr("Enable &EFI (special OSes only)"));67 m_pEFICheckBox->set WhatsThis(UIWizardNewVM::tr("When checked, the guest will support the"68 "Extended Firmware Interface (EFI), which is required to boot certain 66 m_pEFICheckBox->setText(UIWizardNewVM::tr("Enable EFI (special OSes only)")); 67 m_pEFICheckBox->setToolTip(UIWizardNewVM::tr("When checked, the guest will support the\n" 68 "Extended Firmware Interface (EFI), which is required to boot certain\n" 69 69 "guest OSes. Non-EFI aware OSes will not be able to boot if this option is activated.")); 70 70 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageExpert.h
r87612 r87621 100 100 ExpertToolboxItems_NameAndOSType, 101 101 ExpertToolboxItems_Unattended, 102 ExpertToolboxItems_Disk,103 102 ExpertToolboxItems_Hardware, 103 ExpertToolboxItems_Disk 104 104 }; 105 105
Note:
See TracChangeset
for help on using the changeset viewer.