- Timestamp:
- Aug 9, 2021 8:43:16 AM (4 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardDiskEditors.cpp
r90403 r90575 330 330 "VM creation time, rather than being allocated dynamically at VM run-time.</p>")); 331 331 } 332 m_pSplitBox->setText(tr("&Split into files of less than 2GB")); 333 332 if (m_pSplitBox) 333 { 334 m_pSplitBox->setText(tr("&Split into files of less than 2GB")); 335 m_pSplitBox->setText(tr("&When checked the virtual disk file will be splitted into 2GB parts in the host storage.")); 336 } 334 337 } 335 338 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageExpert.cpp
r90430 r90575 76 76 connect(m_pVariantGroup, &UIDiskVariantGroupBox::sigMediumVariantChanged, 77 77 this, &UIWizardNewVDPageExpert::sltMediumVariantChanged); 78 79 // connect(m_pFixedCheckBox, &QAbstractButton::toggled,80 // this, &UIWizardNewVDPageExpert::completeChanged);81 // connect(m_pSplitBox, &QCheckBox::stateChanged,82 // this, &UIWizardNewVDPageExpert::completeChanged);83 // connect(m_pLocationEditor, &QLineEdit::textChanged,84 // this, &UIWizardNewVDPageExpert::completeChanged);85 78 connect(m_pSizeAndPathGroup, &UIMediumSizeAndPathGroupBox::sigMediumLocationButtonClicked, 86 79 this, &UIWizardNewVDPageExpert::sltSelectLocationButtonClicked); 87 // connect(m_pMediumSizeEditor, &UIMediumSizeEditor::sigSizeChanged,88 // this, &UIWizardNewVDPageExpert::completeChanged);89 90 80 connect(m_pSizeAndPathGroup, &UIMediumSizeAndPathGroupBox::sigMediumSizeChanged, 91 81 this, &UIWizardNewVDPageExpert::sltMediumSizeChanged); 92 93 82 connect(m_pSizeAndPathGroup, &UIMediumSizeAndPathGroupBox::sigMediumPathChanged, 94 83 this, &UIWizardNewVDPageExpert::sltMediumPathChanged); 95 84 96 85 retranslateUi(); 97 98 86 } 99 87 … … 141 129 void UIWizardNewVDPageExpert::retranslateUi() 142 130 { 143 // UIWizardNewVDPageBaseFileType::retranslateWidgets();144 // UIWizardNewVDPageBaseVariant::retranslateWidgets();145 // UIWizardNewVDPageBaseSizeLocation::retranslateWidgets();146 // /* Translate widgets: */147 // if (m_pLocationGroupBox)148 // m_pLocationGroupBox->setTitle(UIWizardNewVD::tr("Hard disk file &location"));149 // if (m_pSizeGroupBox)150 // m_pSizeGroupBox->setTitle(UIWizardNewVD::tr("Hard disk file &size"));151 // if (m_pFormatGroupBox)152 // m_pFormatGroupBox->setTitle(UIWizardNewVD::tr("Hard disk file &type"));153 // if (m_pFormatButtonGroup)154 // {155 // QList<QAbstractButton*> buttons = m_pFormatButtonGroup->buttons();156 // for (int i = 0; i < buttons.size(); ++i)157 // {158 // QAbstractButton *pButton = buttons[i];159 // UIMediumFormat enmFormat = gpConverter->fromInternalString<UIMediumFormat>(m_formatNames[m_pFormatButtonGroup->id(pButton)]);160 // pButton->setText(gpConverter->toString(enmFormat));161 // }162 // }163 // if (m_pVariantGroupBox)164 // m_pVariantGroupBox->setTitle(UIWizardNewVD::tr("Storage on physical hard disk"));165 // if (m_pSplitBox)166 // m_pSplitBox->setText(UIWizardNewVD::tr("&Split into files of less than 2GB"));167 131 } 168 132
Note:
See TracChangeset
for help on using the changeset viewer.