Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 552 of file fontdlg.c.
Referenced by CFn_WMCommand(), and CFn_WMInitDialog().
{ LONG id; int i, ret = 0; /* look for fitting font style in combobox2 */ for (i=0;i<TEXT_EXTRAS;i++) { id = SendDlgItemMessageW(hDlg, cmb2, CB_GETITEMDATA, i, 0); if (packedstyle == id) { SendDlgItemMessageW(hDlg, cmb2, CB_SETCURSEL, i, 0); SendMessageW(hDlg, WM_COMMAND, MAKEWPARAM(cmb2, CBN_SELCHANGE), (LPARAM)GetDlgItem(hDlg,cmb2)); ret = 1; break; } } return ret; }