Changeset 101712 in vbox
- Timestamp:
- Nov 2, 2023 9:46:23 AM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 159806
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINameAndSystemEditor.cpp
r101711 r101712 283 283 m_pSelectorPath->setToolTip(tr("Selects the folder hosting virtual machine.")); 284 284 if (m_pComboFamily) 285 m_pComboFamily->setToolTip(tr("Selects the operating system familythat "285 m_pComboFamily->setToolTip(tr("Selects the operating system type that " 286 286 "you plan to install into this virtual machine.")); 287 287 if (m_pComboType) 288 m_pComboType->setToolTip(tr("Selects the operating system typethat "288 m_pComboType->setToolTip(tr("Selects the operating system version that " 289 289 "you plan to install into this virtual machine " 290 290 "(called a guest operating system).")); … … 613 613 const UIGuestOSTypeManager::UIGuestOSTypeFamilyInfo &families = uiCommon().guestOSTypeManager().getFamilies(); 614 614 615 /* Block signals initially and clear the combo: */ 616 m_pComboFamily->blockSignals(true); 617 m_pComboFamily->clear(); 618 615 619 /* Populate family combo: */ 616 620 for (int i = 0; i < families.size(); ++i) … … 619 623 m_pComboFamily->setItemData(i, families[i].first); 620 624 } 625 626 /* Unblock signals finally: */ 627 m_pComboFamily->blockSignals(false); 621 628 622 629 /* Select 1st OS family: */
Note:
See TracChangeset
for help on using the changeset viewer.