| 2061 | } |
| 2062 | |
| 2063 | CControlUI* CPaintManagerUI::FindSubControlByPoint(CControlUI* pParent, POINT pt) const |
| 2064 | { |
| 2065 | if( pParent == NULL ) pParent = GetRoot(); |
| 2066 | ASSERT(pParent); |
| 2067 | return pParent->FindControl(__FindControlFromPoint, &pt, UIFIND_VISIBLE | UIFIND_HITTEST | UIFIND_TOP_FIRST); |
| 2068 | } |
| 2069 | |
| 2070 | CControlUI* CPaintManagerUI::FindSubControlByName(CControlUI* pParent, LPCTSTR pstrName) const |
| 2071 | { |
nothing calls this directly
no test coverage detected