| 148 | } |
| 149 | |
| 150 | bool TreeViewCtrl::HasChild(HTREEITEM hti) const |
| 151 | { |
| 152 | HTREEITEM htiChild = NULL; |
| 153 | htiChild = TreeView_GetChild(m_hTree, hti); |
| 154 | return htiChild ? true : false; |
| 155 | } |
| 156 | |
| 157 | auto TreeViewCtrl::GetNodeName(HTREEITEM hti, bool removeTrailingCount) const -> std::wstring |
| 158 | { |