| 225 | } |
| 226 | |
| 227 | auto TreeViewCtrl::GetNodeValue(HTREEITEM hti) const -> std::wstring |
| 228 | { |
| 229 | std::wstring retVal = GetNodeName(hti, true); |
| 230 | |
| 231 | auto pos = retVal.find(L" : "); |
| 232 | if (pos != std::wstring::npos) |
| 233 | { |
| 234 | retVal = retVal.substr(pos + 3); |
| 235 | } |
| 236 | return retVal; |
| 237 | } |
| 238 | |
| 239 | auto TreeViewCtrl::GetNodePath(HTREEITEM hti) const -> std::wstring |
| 240 | { |
no outgoing calls
no test coverage detected