| 1424 | } |
| 1425 | |
| 1426 | DWORD CRichEditUI::GetDefaultCharFormat(CHARFORMAT2 &cf) const |
| 1427 | { |
| 1428 | cf.cbSize = sizeof(CHARFORMAT2); |
| 1429 | LRESULT lResult; |
| 1430 | TxSendMessage(EM_GETCHARFORMAT, 0, (LPARAM)&cf, &lResult); |
| 1431 | return (DWORD)lResult; |
| 1432 | } |
| 1433 | |
| 1434 | bool CRichEditUI::SetDefaultCharFormat(CHARFORMAT2 &cf) |
| 1435 | { |
nothing calls this directly
no outgoing calls
no test coverage detected