| 576 | void CUIStatic::SetClipRect(Frect r) { m_ClipRect = r; } |
| 577 | |
| 578 | void CUIStatic::OnFocusReceive() |
| 579 | { |
| 580 | inherited::OnFocusReceive(); |
| 581 | if (GetMessageTarget()) |
| 582 | GetMessageTarget()->SendMessage(this, STATIC_FOCUS_RECEIVED, NULL); |
| 583 | } |
| 584 | |
| 585 | void CUIStatic::OnFocusLost() |
| 586 | { |
nothing calls this directly
no test coverage detected