Changeset 101324 in vbox
- Timestamp:
- Oct 2, 2023 10:11:20 AM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 159324
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINameAndSystemEditor.cpp
r101316 r101324 545 545 if (m_fChooseType) 546 546 { 547 const int iIconRow = iRow; 548 547 549 /* Prepare VM OS family label: */ 548 550 m_pLabelFamily = new QLabel(this); … … 561 563 m_pLayout->addWidget(m_pComboFamily, iRow, 1); 562 564 } 563 564 565 ++iRow; 566 567 /* Prepare VM OS variant label: */ 565 568 m_pLabelVariant = new QLabel(this); 566 569 if (m_pLabelVariant) … … 571 574 m_pLayout->addWidget(m_pLabelVariant, iRow, 0); 572 575 } 576 /* Prepare VM OS variant combo: */ 573 577 m_pComboVariant = new QComboBox(this); 574 578 if (m_pComboVariant) … … 577 581 m_pLayout->addWidget(m_pComboVariant, iRow, 1); 578 582 } 579 580 const int iIconRow = iRow;581 583 ++iRow; 582 584 … … 597 599 m_pLayout->addWidget(m_pComboType, iRow, 1); 598 600 } 599 600 601 ++iRow; 601 602
Note:
See TracChangeset
for help on using the changeset viewer.