| 1238 | } |
| 1239 | |
| 1240 | bool CRichEditUI::GetModify() const |
| 1241 | { |
| 1242 | if( !m_pTwh ) return false; |
| 1243 | LRESULT lResult; |
| 1244 | TxSendMessage(EM_GETMODIFY, 0, 0, &lResult); |
| 1245 | return (BOOL)lResult == TRUE; |
| 1246 | } |
| 1247 | |
| 1248 | void CRichEditUI::SetModify(bool bModified) const |
| 1249 | { |
nothing calls this directly
no outgoing calls
no test coverage detected