| 1595 | } |
| 1596 | |
| 1597 | int CRichEditUI::CharFromPos(CPoint pt) const |
| 1598 | { |
| 1599 | POINTL ptl = {pt.x, pt.y}; |
| 1600 | if( !m_pTwh ) return 0; |
| 1601 | LRESULT lResult; |
| 1602 | TxSendMessage(EM_CHARFROMPOS, 0, (LPARAM)&ptl, &lResult); |
| 1603 | return (int)lResult; |
| 1604 | } |
| 1605 | |
| 1606 | void CRichEditUI::EmptyUndoBuffer() |
| 1607 | { |
nothing calls this directly
no outgoing calls
no test coverage detected