| 49 | return cnt; |
| 50 | } |
| 51 | void MessageStack::RenameGroup(const std::string& group, const std::string& newName) |
| 52 | { |
| 53 | for (int i = 0; i < m_msgs.size(); i++) |
| 54 | if (m_msgs[i].Group == group) |
| 55 | m_msgs[i].Group = newName; |
| 56 | } |
| 57 | bool MessageStack::CanRenderPreview() |
| 58 | { |
| 59 | for (int i = 0; i < m_msgs.size(); i++) |