| 851 | } |
| 852 | |
| 853 | DWORD OnItemPostPaint(int /*idCtrl*/, LPNMCUSTOMDRAW lpNMCustomDraw) |
| 854 | { |
| 855 | T* pT = static_cast<T*>(this); |
| 856 | pT->DrawTreeItem(lpNMCustomDraw->hdc, (HTREEITEM) lpNMCustomDraw->dwItemSpec, lpNMCustomDraw->uItemState); |
| 857 | return CDRF_DODEFAULT; |
| 858 | } |
| 859 | |
| 860 | // Overridables |
| 861 |
nothing calls this directly
no outgoing calls
no test coverage detected