Changeset 90092 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 8, 2021 11:35:46 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145591
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMDiskPageBasic.cpp
r90091 r90092 200 200 this, &UIWizardNewVMDiskPageBasic::sltGetWithFileOpenDialog); 201 201 if (m_pMediumSizeEditor) 202 {203 connect(m_pMediumSizeEditor, &UIMediumSizeEditor::sigSizeChanged,204 this, &UIWizardNewVMDiskPageBasic::completeChanged);205 202 connect(m_pMediumSizeEditor, &UIMediumSizeEditor::sigSizeChanged, 206 203 this, &UIWizardNewVMDiskPageBasic::sltHandleSizeEditorChange); 207 }208 204 if (m_pFixedCheckBox) 209 205 connect(m_pFixedCheckBox, &QCheckBox::toggled, … … 468 464 } 469 465 470 void UIWizardNewVMDiskPageBasic::sltHandleSizeEditorChange() 471 { 466 void UIWizardNewVMDiskPageBasic::sltHandleSizeEditorChange(qulonglong uSize) 467 { 468 newVMWizardPropertySet(MediumSize, uSize); 472 469 m_userModifiedParameters << "MediumSize"; 470 emit completeChanged(); 473 471 } 474 472 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMDiskPageBasic.h
r90091 r90092 88 88 void sltMediaComboBoxIndexChanged(); 89 89 void sltGetWithFileOpenDialog(); 90 void sltHandleSizeEditorChange( );90 void sltHandleSizeEditorChange(qulonglong uSize); 91 91 void sltFixedCheckBoxToggled(bool fChecked); 92 92
Note:
See TracChangeset
for help on using the changeset viewer.