Changeset 90712 in vbox
- Timestamp:
- Aug 18, 2021 9:35:01 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UINativeWizard.cpp
r90589 r90712 458 458 for (int i = WizardButtonType_Invalid + 1; i < WizardButtonType_Max; ++i) 459 459 { 460 /* Create the help button only if the help hash tag is set: */461 if (m_strHelpHashtag.isEmpty() && i == WizardButtonType_Help)462 continue;463 460 const WizardButtonType enmType = (WizardButtonType)i; 464 m_buttons[enmType] = new QPushButton(pWidgetBottom); 461 /* Create Help button only if help hash tag is set. 462 * Create other buttons in any case: */ 463 if (enmType != WizardButtonType_Help || !m_strHelpHashtag.isEmpty()) 464 m_buttons[enmType] = new QPushButton(pWidgetBottom); 465 465 QPushButton *pButton = wizardButton(enmType); 466 466 if (pButton)
Note:
See TracChangeset
for help on using the changeset viewer.