| 105 | } |
| 106 | |
| 107 | void UIStatic::SetBackground(UIPrimativeItem *item) { |
| 108 | if (m_Background) |
| 109 | delete m_Background; |
| 110 | m_Background = NULL; |
| 111 | if (item) |
| 112 | m_Background = (UIPrimativeItem *)item->CopyUIItem(); |
| 113 | } |
| 114 | |
| 115 | void UIStatic::SetTitle(UIItem *item) { |
| 116 | if (m_Title) |
nothing calls this directly
no test coverage detected