| 91 | if(img) img->SetParent(this); |
| 92 | } |
| 93 | void GuiButton::SetLabel(GuiText* txt, int n) |
| 94 | { |
| 95 | label[n] = txt; |
| 96 | if(txt) txt->SetParent(this); |
| 97 | } |
| 98 | void GuiButton::SetLabelOver(GuiText* txt, int n) |
| 99 | { |
| 100 | labelOver[n] = txt; |
no test coverage detected