Ejemplo n.º 1
0
void CConfigAppearance::OnCbnEditchangeFontSize()		// // //
{
	CStringW str;
	CComboBox *pFontSizeList = static_cast<CComboBox*>(GetDlgItem(IDC_FONT_SIZE));
	pFontSizeList->GetWindowTextW(str);
	if (auto newSize = conv::to_int(str)) {
		if (*newSize < 5 || *newSize > 30)
			return; // arbitrary
		m_iFontSize = *newSize;
		RedrawWindow();
		SetModified();
	}
}