| 1588 | } |
| 1589 | |
| 1590 | CPoint CRichEditUI::PosFromChar(UINT nChar) const |
| 1591 | { |
| 1592 | POINTL pt; |
| 1593 | TxSendMessage(EM_POSFROMCHAR, (WPARAM)&pt, nChar, 0); |
| 1594 | return CPoint(pt.x, pt.y); |
| 1595 | } |
| 1596 | |
| 1597 | int CRichEditUI::CharFromPos(CPoint pt) const |
| 1598 | { |
nothing calls this directly
no outgoing calls
no test coverage detected