| 1703 | } |
| 1704 | |
| 1705 | void MsgListConsole::Close() { |
| 1706 | if (m_opened) { |
| 1707 | if (m_conlines) |
| 1708 | mem_free(m_conlines); |
| 1709 | if (m_buffer) |
| 1710 | mem_free(m_buffer); |
| 1711 | m_opened = false; |
| 1712 | ResumeControls(); |
| 1713 | } |
| 1714 | } |
| 1715 | |
| 1716 | void MsgListConsole::AttachMsgList(tMsgList *msglist) { |
| 1717 | m_list = msglist; |
no test coverage detected