| 113 | } |
| 114 | |
| 115 | void UIStatic::SetTitle(UIItem *item) { |
| 116 | if (m_Title) |
| 117 | delete m_Title; |
| 118 | m_Title = NULL; |
| 119 | if (item) |
| 120 | m_Title = (UIPrimativeItem *)item->CopyUIItem(); |
| 121 | } |
| 122 | |
| 123 | void UIStatic::OnDraw() { |
| 124 | if (m_Flags & UIF_BORDER) |
nothing calls this directly
no test coverage detected