| 76 | }; |
| 77 | |
| 78 | wxString CreateBlockText(const mdf::detail::MdfBlock&block) { |
| 79 | std::ostringstream block_string; |
| 80 | block_string << block.BlockType(); |
| 81 | const auto comment = block.Comment(); |
| 82 | if (!comment.empty()) { |
| 83 | block_string << " (" << comment << ")"; |
| 84 | } |
| 85 | return wxString::FromUTF8(block_string.str()); |
| 86 | } |
| 87 | |
| 88 | int64_t GetBlockId(const wxTreeCtrl& list, const wxTreeItemId& item) { |
| 89 | if (!item.IsOk()) { |
no test coverage detected