Changeset 85071 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 6, 2020 1:30:23 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138974
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic2.cpp
r85067 r85071 125 125 QWidget *pContainer = new QWidget; 126 126 QGridLayout *pGridLayout = new QGridLayout(pContainer); 127 pGridLayout->setContentsMargins(0, 0, 0, 0); 127 128 128 129 m_pUserNamePasswordEditor = new UIUserNamePasswordEditor; … … 141 142 QWidget *pContainer = new QWidget; 142 143 QGridLayout *pContainerLayout = new QGridLayout(pContainer); 144 pContainerLayout->setContentsMargins(0, 0, 0, 0); 143 145 144 146 m_pInstallGACheckBox = new QCheckBox; … … 169 171 QWidget *pContainer = new QWidget; 170 172 QGridLayout *pGridLayout = new QGridLayout(pContainer); 173 pGridLayout->setContentsMargins(0, 0, 0, 0); 171 174 172 175 m_pProductKeyLabel = new QLabel; -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic3.cpp
r85067 r85071 158 158 QWidget *pDiskContainer = new QWidget; 159 159 QGridLayout *pDiskLayout = new QGridLayout(pDiskContainer); 160 pDiskLayout->setContentsMargins(0, 0, 0, 0); 160 161 161 162 m_pDiskSkip = new QRadioButton; … … 188 189 QWidget *pHardwareContainer = new QWidget; 189 190 QGridLayout *pHardwareLayout = new QGridLayout(pHardwareContainer); 190 191 pHardwareLayout->setContentsMargins(0, 0, 0, 0); 191 192 m_pBaseMemoryEditor = new UIBaseMemoryEditor(0, true); 192 193 m_pVirtualCPUEditor = new UIVirtualCPUEditor(0, true);
Note:
See TracChangeset
for help on using the changeset viewer.