| 331 | } |
| 332 | |
| 333 | DWORD_PTR GetItemData(HTREEITEM hItem) const |
| 334 | { |
| 335 | ATLASSERT(::IsWindow(m_hWnd)); |
| 336 | IProperty* prop = reinterpret_cast<IProperty*>(TBase::GetItemData(hItem)); |
| 337 | ATLASSERT(prop); |
| 338 | if( prop == NULL ) return 0; |
| 339 | return (DWORD_PTR) prop->GetItemData(); |
| 340 | } |
| 341 | |
| 342 | void SetItemData(HTREEITEM hItem, DWORD_PTR dwData) |
| 343 | { |
no test coverage detected