| 62 | // CBriefScreenEdit message handlers |
| 63 | |
| 64 | void CBriefScreenEdit::OnOK() { |
| 65 | CComboBox *combo = (CComboBox *)GetDlgItem(IDC_BRIEF_ADDS_LAYOUT_LIST); |
| 66 | int sel = combo->GetCurSel(); |
| 67 | if (sel > 0) { |
| 68 | combo->GetLBText(sel, layout_str); |
| 69 | } else { |
| 70 | layout_str = ""; |
| 71 | } |
| 72 | |
| 73 | if (bm_handle > BAD_BITMAP_HANDLE) |
| 74 | bm_FreeBitmap(bm_handle); |
| 75 | |
| 76 | CDialog::OnOK(); |
| 77 | } |
| 78 | |
| 79 | BOOL CBriefScreenEdit::OnInitDialog() { |
| 80 | CDialog::OnInitDialog(); |
nothing calls this directly
no test coverage detected