| 440 | } |
| 441 | |
| 442 | HTREEITEM JsonViewDlg::InsertToTree(HTREEITEM parent, const std::string& text) |
| 443 | { |
| 444 | auto wText = StringHelper::ToWstring(text, CP_UTF8); |
| 445 | return m_pTreeView->InsertNode(wText, NULL, parent); |
| 446 | } |
| 447 | |
| 448 | HTREEITEM JsonViewDlg::InsertToTree(HTREEITEM parent, const std::string& text, const Position& pos) |
| 449 | { |
nothing calls this directly
no test coverage detected