| 1177 | } |
| 1178 | |
| 1179 | void MessageList::HitTestReply(POINT pt, BOOL& hit) |
| 1180 | { |
| 1181 | auto msg = FindMessageByPointReplyRect(pt); |
| 1182 | |
| 1183 | if (msg == m_messages.end() || msg->m_msg->m_type != MessageType::REPLY || !PtInRect(&msg->m_refMsgRect, pt)) |
| 1184 | return; |
| 1185 | |
| 1186 | hit = TRUE; |
| 1187 | } |
| 1188 | |
| 1189 | void MessageList::HitTestAuthor(POINT pt, BOOL& hit) |
| 1190 | { |