| 340 | } |
| 341 | |
| 342 | void SetItemData(HTREEITEM hItem, DWORD_PTR dwData) |
| 343 | { |
| 344 | ATLASSERT(::IsWindow(m_hWnd)); |
| 345 | IProperty* prop = reinterpret_cast<IProperty*>(TBase::GetItemData(hItem)); |
| 346 | ATLASSERT(prop); |
| 347 | if( prop == NULL ) return; |
| 348 | prop->SetItemData( (LPARAM) dwData ); |
| 349 | } |
| 350 | |
| 351 | BOOL GetCheckState(HTREEITEM hItem) const |
| 352 | { |
nothing calls this directly
no test coverage detected