diff --git a/mozilla/cck/cckwiz/iniFiles/Info.ini b/mozilla/cck/cckwiz/iniFiles/Info.ini index 9f949cd616b..6d6afe3f59b 100644 --- a/mozilla/cck/cckwiz/iniFiles/Info.ini +++ b/mozilla/cck/cckwiz/iniFiles/Info.ini @@ -38,7 +38,7 @@ Height=56 [Widget 696] -Type=GroupBox +Type=BoldGroup Name=GroupBox167 Value=Installer Types Start_x=3 diff --git a/mozilla/cck/driver/WizardUI.cpp b/mozilla/cck/driver/WizardUI.cpp index 07abb84e9df..f20b6b57d33 100644 --- a/mozilla/cck/driver/WizardUI.cpp +++ b/mozilla/cck/driver/WizardUI.cpp @@ -694,7 +694,7 @@ void CWizardUI::CreateControls() rv = ((CComboBox*)curWidget->control)->Create(CBS_DROPDOWNLIST | WS_TABSTOP, tmpRect, this, ID); } - else if (widgetType == "GroupBox") { + else if ((widgetType == "GroupBox") || (widgetType == "BoldGroup")) { curWidget->control = new CButton; rv = ((CButton*)curWidget->control)->Create(curWidget->value, BS_GROUPBOX, tmpRect, this, ID); } @@ -716,6 +716,11 @@ void CWizardUI::CreateControls() { curWidget->control->SetFont(m_pNavFont); } + else if (curWidget->type == "BoldGroup") + { + curWidget->control->SetFont(m_pNavFont); + } + else if (curWidget->control && curWidget->control->m_hWnd) { curWidget->control->SetFont(m_pFont);