| 256 | } |
| 257 | |
| 258 | void SComboBase::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) |
| 259 | { |
| 260 | if (!m_bDropdown) |
| 261 | { |
| 262 | SComboEdit *pEdit = static_cast<SComboEdit *>(FindChildByID(IDC_CB_EDIT)); |
| 263 | if (pEdit) |
| 264 | pEdit->SSendMessage(WM_CHAR, nChar, MAKELONG(nFlags, nRepCnt)); |
| 265 | return; |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | UINT SComboBase::OnGetDlgCode() |
| 270 | { |
nothing calls this directly
no test coverage detected