| 751 | } |
| 752 | |
| 753 | virtual void init() |
| 754 | { |
| 755 | const char *p = valueexp; |
| 756 | char *r = executeret(p); |
| 757 | checked = (r && atoi(r) > 0); |
| 758 | if(r) delete[] r; |
| 759 | } |
| 760 | |
| 761 | virtual void render(int x, int y, int w) |
| 762 | { |
nothing calls this directly
no test coverage detected