| 1531 | } |
| 1532 | |
| 1533 | int CRichEditUI::GetLineCount() const |
| 1534 | { |
| 1535 | if( !m_pTwh ) return 0; |
| 1536 | LRESULT lResult; |
| 1537 | TxSendMessage(EM_GETLINECOUNT, 0, 0, &lResult); |
| 1538 | return (int)lResult; |
| 1539 | } |
| 1540 | |
| 1541 | CDuiString CRichEditUI::GetLine(int nIndex, int nMaxLength) const |
| 1542 | { |
nothing calls this directly
no outgoing calls
no test coverage detected