| 75 | // This is a simple text. |
| 76 | |
| 77 | void UIText::Create(UIWindow *parent, UITextItem *text, int x, int y, int flags) { |
| 78 | UIStatic::Create(parent, text, x, y, 1, 1, flags); |
| 79 | } |
| 80 | |
| 81 | // inheritable operations |
| 82 | // override: called when resized or before drawing. |
nothing calls this directly
no test coverage detected